diff options
author | Thomas White <taw@physics.org> | 2020-07-27 17:20:23 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:53:45 +0200 |
commit | 5b1cd650ec5c7d89129889bd98ec1cecafc4b171 (patch) | |
tree | 3d5c3e52463dae8d137c9e2a53bf17582c3cf8c2 | |
parent | 281b1ad167323713cc90500ce97a4224ba0272b0 (diff) |
Remove curses dependency for integration_check and prof2d_check
These were a hack caused by badly testable API
-rw-r--r-- | tests/CMakeLists.txt | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 23a0c95d..799e43eb 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -31,10 +31,6 @@ add_test(centering_check centering_check) add_executable(integration_check integration_check.c histogram.c) target_include_directories(integration_check PRIVATE ${COMMON_INCLUDES}) target_link_libraries(integration_check PRIVATE ${COMMON_LIBRARIES}) -if (CURSES_FOUND) - target_include_directories(integration_check PRIVATE ${CURSES_INCLUDE_DIRS}) - target_link_libraries(integration_check PRIVATE ${CURSES_LIBRARIES}) -endif (CURSES_FOUND) add_test(integration_check integration_check) add_executable(list_check list_check.c) @@ -50,10 +46,6 @@ add_test(prediction_gradient_check prediction_gradient_check) add_executable(prof2d_check prof2d_check.c histogram.c) target_include_directories(prof2d_check PRIVATE ${COMMON_INCLUDES}) target_link_libraries(prof2d_check PRIVATE ${COMMON_LIBRARIES}) -if (CURSES_FOUND) - target_include_directories(prof2d_check PRIVATE ${CURSES_INCLUDE_DIRS}) - target_link_libraries(prof2d_check PRIVATE ${CURSES_LIBRARIES}) -endif (CURSES_FOUND) add_test(prof2d_check prof2d_check) add_executable(ring_check ring_check.c) |