Added yaze_test CMakeLists.txt
This commit is contained in:
27
tests/CMakeLists.txt
Normal file
27
tests/CMakeLists.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
# 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)
|
||||
Reference in New Issue
Block a user