XenonRecomp/PowerTests/CMakeLists.txt
2024-09-28 22:57:35 +06:00

14 lines
270 B
CMake

project("PowerTests")
add_compile_options(
"-march=x86-64-v3"
"-Wno-unused-label"
"-Wno-unused-variable")
file(GLOB TestFiles *.cpp)
if(TestFiles)
add_executable(PowerTests ${TestFiles})
target_link_libraries(PowerTests PUBLIC PowerUtils)
endif()