File: CMakeLists.txt

package info (click to toggle)
mdds 3.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,828 kB
  • sloc: cpp: 21,913; exp: 6,696; makefile: 698; ansic: 616; python: 602; sh: 428; lisp: 8
file content (37 lines) | stat: -rw-r--r-- 860 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-FileCopyrightText: 2025 Kohei Yoshida
#
# SPDX-License-Identifier: MIT

add_executable(rtree-test EXCLUDE_FROM_ALL
    test_basic.cpp
    test_copy.cpp
    test_directory_node_split.cpp
    test_erase_directories.cpp
    test_exact_search_by_extent.cpp
    test_exact_search_by_point.cpp
    test_forced_reinsertion.cpp
    test_geometry.cpp
    test_intersection.cpp
    test_main.cpp
    test_main.cpp
    test_move.cpp
    test_node_split.cpp
    test_point_objects.cpp
    test_square_distance.cpp
)

target_link_libraries(rtree-test PRIVATE test-global)

add_executable(rtree-test-bulkload EXCLUDE_FROM_ALL
    test_bulkload_main.cpp
)

target_link_libraries(rtree-test-bulkload PRIVATE test-global)

add_test(rtree-test rtree-test)
add_test(rtree-test-bulkload rtree-test-bulkload)

add_dependencies(check
    rtree-test
    rtree-test-bulkload
)