XenonRecomp/XenonTests/CMakeLists.txt

21 lines
399 B
CMake
Raw Normal View History

2025-01-19 22:39:12 +03:00
project("XenonTests")
2024-09-21 21:47:34 +03:00
2025-02-27 00:11:11 +03:00
file(GLOB TEST_FILES *.cpp)
2024-09-22 19:58:22 +03:00
2025-02-27 00:11:11 +03:00
if(TEST_FILES)
add_executable(XenonTests
${TEST_FILES}
)
target_link_libraries(XenonTests
PUBLIC
XenonUtils
fmt::fmt
)
target_compile_options(XenonTests
PRIVATE
"-march=sandybridge"
"-Wno-unused-label"
"-Wno-unused-variable"
)
2024-09-28 22:57:35 +06:00
endif()