cmake improvements: test and samples are from now disabled by default, you can enable this option with cmdline option to cmake: '-DENABLE_TESTS=1'

minimum required CMAKE version is 2.6 from now
This commit is contained in:
Marian Krivos
2011-01-22 11:46:03 +00:00
parent 96b0296969
commit 0ac146cb9e
16 changed files with 105 additions and 32 deletions

View File

@@ -34,4 +34,6 @@ install(
DESTINATION lib
)
add_subdirectory( testsuite )
if (ENABLE_TESTS)
add_subdirectory(testsuite)
endif ()