orderly/gtest/CMakeLists.txt

17 lines
226 B
CMake
Raw Normal View History

2020-03-31 15:52:46 +00:00
include_directories(
${CMAKE_CURRENT_LIST_DIR}/../src
)
include(GoogleTest)
add_executable(vbt_test vbt_test.cpp)
target_link_libraries(
vbt_test
gtest
gtest_main
pthread
)
add_test(vbt_test vbt_test)