27 lines
662 B
CMake
27 lines
662 B
CMake
# GoogleTest ------------------------------------------------------------------------------------
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
googletest
|
|
URL https://github.com/google/googletest/archive/609281088cfefc76f9d0ce82e1ff6c30cc3591e5.zip
|
|
)
|
|
# For Windows: Prevent overriding the parent project's compiler/linker settings
|
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
FetchContent_MakeAvailable(googletest)
|
|
enable_testing()
|
|
|
|
add_executable(
|
|
yaze_test
|
|
yaze_test.cc
|
|
)
|
|
|
|
target_link_libraries(
|
|
yaze_test
|
|
${BOOST_LIBRARIES}
|
|
${SDL2_LIBRARIES}
|
|
${OPENGL_LIBRARIES}
|
|
gtest_main
|
|
gtest
|
|
)
|
|
|
|
include(GoogleTest)
|
|
gtest_discover_tests(yaze_test) |