moved test framework

This commit is contained in:
Erik Frojdh
2018-10-22 11:21:18 +02:00
parent ab2eb607c8
commit 129e12fd97
7 changed files with 37 additions and 15 deletions

View File

@@ -6,7 +6,7 @@ option (USE_HDF5 "HDF5 File format" OFF)
option (USE_TEXTCLIENT "Text Client" OFF)
option (USE_RECEIVER "Receiver" OFF)
option (USE_GUI "GUI" OFF)
option (USE_TESTS "TESTS" ON)
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 6.0)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=c++11 -Wno-misleading-indentation")
@@ -70,5 +70,9 @@ if (CALIBRATE)
endif()
endif(CALIBRATE)
if (USE_TESTS)
add_subdirectory(tests)
endif(USE_TESTS)
install(FILES ${ZMQ_STATIC_ARCHIVE}
DESTINATION lib)