diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2024-02-21 17:03:45 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2024-02-21 17:03:45 -0500 |
| commit | 0fcf63e9e47bae61b9f7289c157b28ec294c2e24 (patch) | |
| tree | 420d860c8fb92637d46f6ae2dfbcdde7b047e2cc /CMakeLists.txt | |
| parent | 49bceabf90d114b89638659141d54083c1b7f395 (diff) | |
| download | dynamic-extension-0fcf63e9e47bae61b9f7289c157b28ec294c2e24.tar.gz | |
Triespline: added test to verify that crash is not due to this project
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 81fdb63..31bc75a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,6 +115,12 @@ if (tests) target_include_directories(pgm_tests PRIVATE include external/PGM-index/include external/psudb-common/cpp/include) target_link_options(pgm_tests PUBLIC -mcx16) target_compile_options(pgm_tests PUBLIC -fopenmp) + + + add_executable(triespline_debug ${CMAKE_CURRENT_SOURCE_DIR}/tests/triespline_debug.cpp) + target_link_libraries(triespline_debug PUBLIC gsl check subunit pthread atomic) + target_link_options(triespline_debug PUBLIC -mcx16) + target_include_directories(triespline_debug PRIVATE include external/psudb-common/cpp/include external/PLEX/include) endif() if (bench) |