XenonRecomp/XenonTests/CMakeLists.txt

14 lines
270 B
CMake
Raw Normal View History

2025-01-19 22:39:12 +03:00
project("XenonTests")
2024-09-21 21:47:34 +03:00
2024-09-22 19:58:22 +03:00
add_compile_options(
"-march=x86-64-v3"
"-Wno-unused-label"
"-Wno-unused-variable")
2024-09-21 21:47:34 +03:00
file(GLOB TestFiles *.cpp)
2024-09-28 22:57:35 +06:00
if(TestFiles)
2025-01-19 22:39:12 +03:00
add_executable(XenonTests ${TestFiles})
target_link_libraries(XenonTests PUBLIC XenonUtils)
2024-09-28 22:57:35 +06:00
endif()