mirror of
https://github.com/KingDuckZ/dindexer.git
synced 2025-02-17 11:45:50 +00:00
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
|
|
)
|