Modify CMakeLists.txt file to compile the tests
This commit is contained in:
parent
999bef7c8d
commit
02a3cd2db8
6
CMakeLists.txt
Executable file → Normal file
6
CMakeLists.txt
Executable file → Normal file
|
@ -9,6 +9,7 @@ SET(LIBRARY_OUTPUT_PATH lib/)
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
OPTION(COMPILE_EXAMPLES "Select this if you want to build the examples" OFF)
|
OPTION(COMPILE_EXAMPLES "Select this if you want to build the examples" OFF)
|
||||||
|
OPTION(COMPILE_TESTS "Select this if you want to build the tests" OFF)
|
||||||
|
|
||||||
# Headers
|
# Headers
|
||||||
INCLUDE_DIRECTORIES(src)
|
INCLUDE_DIRECTORIES(src)
|
||||||
|
@ -31,3 +32,8 @@ ADD_LIBRARY (
|
||||||
IF (COMPILE_EXAMPLES)
|
IF (COMPILE_EXAMPLES)
|
||||||
add_subdirectory(examples/fallingcubes)
|
add_subdirectory(examples/fallingcubes)
|
||||||
ENDIF (COMPILE_EXAMPLES)
|
ENDIF (COMPILE_EXAMPLES)
|
||||||
|
|
||||||
|
# If we need to compile the tests
|
||||||
|
IF (COMPILE_TESTS)
|
||||||
|
add_subdirectory(test/)
|
||||||
|
ENDIF (COMPILE_TESTS)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user