diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2024-05-14 16:04:43 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2024-05-14 16:04:43 -0400 |
| commit | c49543e5c23af6bee35c7164ba433fc663c79041 (patch) | |
| tree | 761462e3efa6a54f6b9838ab888e3428d85aefda /CMakeLists.txt | |
| parent | b1eca8192b7bc17f13c8f3aeae9e79f6bc03347c (diff) | |
| download | dynamic-extension-c49543e5c23af6bee35c7164ba433fc663c79041.tar.gz | |
Removed patricia trie stuff
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c6dad75..e072d58 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -145,12 +145,7 @@ if (tests) add_executable(fst_tests ${CMAKE_CURRENT_SOURCE_DIR}/tests/fst_tests.cpp) target_link_libraries(fst_tests PUBLIC gsl check subunit pthread atomic) target_link_options(fst_tests PUBLIC -mcx16) - target_include_directories(fst_tests PRIVATE include external/psudb-common/cpp/include external/PLEX/include external/fast_succinct_trie/include external/louds-patricia) - - #add_executable(louds_tests ${CMAKE_CURRENT_SOURCE_DIR}/tests/louds_tests.cpp) - #target_link_libraries(louds_tests PUBLIC gsl check subunit pthread atomic) - #target_link_options(louds_tests PUBLIC -mcx16) - #target_include_directories(louds_tests PRIVATE include external/psudb-common/cpp/include external/PLEX/include external/fast_succinct_trie/include external/louds-patricia) + target_include_directories(fst_tests PRIVATE include external/psudb-common/cpp/include external/PLEX/include external/fast_succinct_trie/include) endif() if (vldb_bench) @@ -295,12 +290,6 @@ if (bench) target_link_options(string_insertion_tput PUBLIC -mcx16) - add_executable(louds_insertion_tput ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/louds_insertion_tput.cpp) - target_link_libraries(louds_insertion_tput PUBLIC gsl pthread atomic) - target_include_directories(louds_insertion_tput PRIVATE include external external/fast_succinct_trie/include external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include external/louds-patricia) - target_link_options(louds_insertion_tput PUBLIC -mcx16) - - add_executable(query_workload_bench ${CMAKE_CURRENT_SOURCE_DIR}/benchmarks/query_workload_bench.cpp) target_link_libraries(query_workload_bench PUBLIC gsl pthread atomic) target_include_directories(query_workload_bench PRIVATE include external external/m-tree/cpp external/PGM-index/include external/PLEX/include benchmarks/include external/psudb-common/cpp/include) |