XenonRecomp/PowerTests/CMakeLists.txt

14 lines
270 B
CMake
Raw Permalink Normal View History

2024-09-21 21:47:34 +03:00
project("PowerTests")
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)
add_executable(PowerTests ${TestFiles})
target_link_libraries(PowerTests PUBLIC PowerUtils)
endif()