mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-22 13:07:15 +00:00
14 lines
270 B
CMake
14 lines
270 B
CMake
project("XenonTests")
|
|
|
|
add_compile_options(
|
|
"-march=x86-64-v3"
|
|
"-Wno-unused-label"
|
|
"-Wno-unused-variable")
|
|
|
|
file(GLOB TestFiles *.cpp)
|
|
|
|
if(TestFiles)
|
|
add_executable(XenonTests ${TestFiles})
|
|
target_link_libraries(XenonTests PUBLIC XenonUtils)
|
|
endif()
|