Rebrand to XenonRecomp.

This commit is contained in:
Skyth
2025-01-19 22:39:12 +03:00
parent 7fb8af1bad
commit 87e350906b
54 changed files with 69 additions and 64 deletions

1
XenonTests/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.cpp

13
XenonTests/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
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()