mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-22 16:51:31 +00:00
15 lines
311 B
CMake
15 lines
311 B
CMake
project("PowerSample")
|
|
|
|
add_compile_options(
|
|
"/D_HAS_EXCEPTIONS=0"
|
|
"/fp:strict"
|
|
"/GS-"
|
|
"/EHa-"
|
|
"-march=sandybridge"
|
|
"-fno-strict-aliasing")
|
|
|
|
file(GLOB RecompiledFiles *.cpp)
|
|
add_library(PowerSample ${RecompiledFiles})
|
|
|
|
target_precompile_headers(PowerSample PUBLIC "ppc_recomp_shared.h")
|