mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2024-11-29 01:33:46 +00:00
King_DuckZ
ada0f1df50
I'm having linker errors in gtest, pushing to see if this also happens on the build server.
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 ${bare_name}-if
|
|
PRIVATE ${bare_name}-common
|
|
PRIVATE ${bare_name}-machinery
|
|
PRIVATE gtest
|
|
PRIVATE gtest_main
|
|
)
|