mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-19 10:51:18 +00:00
21 lines
399 B
CMake
21 lines
399 B
CMake
project("XenonTests")
|
|
|
|
file(GLOB TEST_FILES *.cpp)
|
|
|
|
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"
|
|
)
|
|
endif()
|