summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-01-11 10:43:02 +0100
committerMattes D <github@xoft.cz>2015-01-22 20:12:44 +0100
commitc7335255acebc1598f6acccf4d4a2065cf2bd628 (patch)
tree4356c7f2972af99cc14dc0ca16008d26b459333e
parentAdded newline to logged messages in the tests. (diff)
downloadcuberite-c7335255acebc1598f6acccf4d4a2065cf2bd628.tar
cuberite-c7335255acebc1598f6acccf4d4a2065cf2bd628.tar.gz
cuberite-c7335255acebc1598f6acccf4d4a2065cf2bd628.tar.bz2
cuberite-c7335255acebc1598f6acccf4d4a2065cf2bd628.tar.lz
cuberite-c7335255acebc1598f6acccf4d4a2065cf2bd628.tar.xz
cuberite-c7335255acebc1598f6acccf4d4a2065cf2bd628.tar.zst
cuberite-c7335255acebc1598f6acccf4d4a2065cf2bd628.zip
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 728f5c935..9d7a34c14 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -137,13 +137,14 @@ endif()
# We use EXCLUDE_FROM_ALL so that only the explicit dependencies are used
# (PolarSSL also has test and example programs in their CMakeLists.txt, we don't want those)
-include(lib/polarssl.cmake)
+include(lib/polarssl.cmake EXCLUDE_FROM_ALL)
set_exe_flags()
add_subdirectory (src)
if(${SELF_TEST})
+ message("Tests enabled")
enable_testing()
add_subdirectory (tests)
endif()