mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-05-15 10:45:48 +00:00
8 lines
378 B
CMake
8 lines
378 B
CMake
cmake_minimum_required (VERSION 3.8)
|
|
|
|
project("PowerRecomp")
|
|
|
|
add_executable(PowerRecomp "main.cpp" "pch.h" "recompiler.cpp" "recompiler.h" "swa_recompiler.cpp" "swa_recompiler.h" "test_recompiler.cpp" "test_recompiler.h")
|
|
target_precompile_headers(PowerRecomp PUBLIC "pch.h")
|
|
target_link_libraries(PowerRecomp PRIVATE LibPowerAnalyse tomlplusplus::tomlplusplus xxHash::xxhash)
|