Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,20 +127,18 @@ ENDIF( CED_SERVER )


# ------------------ CED TESTS ------------------
IF( BUILD_TESTING )
#FOREACH( _testname test_ced test_ced_mhits test_ced_color )
FOREACH( _testname test_ced test_ced_mhits )
FOREACH( _testname test_ced test_ced_mhits )

IF( BUILD_TESTING )
ADD_EXECUTABLE( ${_testname} ./src/tests/${_testname}.cc )
ELSE()
ADD_EXECUTABLE( ${_testname} EXCLUDE_FROM_ALL ./src/tests/${_testname}.cc )
ENDIF()
ADD_EXECUTABLE( ${_testname} ./src/tests/${_testname}.cc )

TARGET_LINK_LIBRARIES( ${_testname} CED )

INSTALL( TARGETS ${_testname} DESTINATION bin )

ENDFOREACH()
ENDFOREACH()
ENDIF()



Expand Down