diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-13 15:34:49 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-07-13 15:34:49 -0400 |
| commit | 12915304570507e00848aba700f0ed3a26dbb9b6 (patch) | |
| tree | ed69ab1bf95df0fa7924f677b4bad82f325fd96e /CMakeLists.txt | |
| parent | 369dc4c8b3331aa318f2a98eb973d0840541297d (diff) | |
| download | dynamic-extension-12915304570507e00848aba700f0ed3a26dbb9b6.tar.gz | |
Initial commit of VPTree-related code
Point lookups are currently broken; I suspect that there is something
wrong with tree construction, although the quickselect implementation
seems to be fine.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dfdf812..a7b2f8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,6 +45,10 @@ if (tests) target_link_libraries(mutable_buffer_tests PUBLIC gsl check subunit pthread) target_include_directories(mutable_buffer_tests PRIVATE include) + add_executable(vptree_tests ${CMAKE_CURRENT_SOURCE_DIR}/tests/vptree_tests.cpp) + target_link_libraries(vptree_tests PUBLIC gsl check subunit pthread) + target_include_directories(vptree_tests PRIVATE include) + #add_executable(dynamic_extension_tests ${CMAKE_CURRENT_SOURCE_DIR}/tests/dynamic_extension_tests.cpp) #target_link_libraries(dynamic_extension_tests PUBLIC gsl check subunit pthread) #target_include_directories(dynamic_extension_tests PRIVATE include) |