mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2024-11-29 01:33:46 +00:00
King_DuckZ
346946340d
Trying to move the depth-first iteration logic into an iterator-like interface. Work in progress WiP
17 lines
328 B
CMake
17 lines
328 B
CMake
project(${bare_name}-test CXX)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
test_diriterator.cpp
|
|
)
|
|
|
|
target_include_directories(${PROJECT_NAME} SYSTEM
|
|
PRIVATE ../gtest/include
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
PRIVATE gtest
|
|
PRIVATE gtest_main
|
|
PRIVATE ${bare_name}-if
|
|
PRIVATE ${bare_name}-common
|
|
PRIVATE ${bare_name}-machinery
|
|
)
|