mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
14 lines
260 B
CMake
14 lines
260 B
CMake
set(CMAKE_FOLDER "tests")
|
|
|
|
add_executable(
|
|
byteswap_tests
|
|
byteswap_tests.cpp
|
|
)
|
|
target_link_libraries(
|
|
byteswap_tests
|
|
GTest::gtest_main
|
|
)
|
|
target_include_directories(byteswap_tests PRIVATE ${PROJECT_SOURCE_DIR}/lib)
|
|
|
|
gtest_discover_tests(byteswap_tests)
|