XenonRecomp/PowerUtils/CMakeLists.txt

6 lines
272 B
CMake
Raw Permalink Normal View History

2024-09-07 18:00:09 +06:00
project("PowerUtils")
2024-09-08 08:32:31 +06:00
add_library(PowerUtils "disasm.h" "disasm.cpp" "file.h" "xex.cpp" "image.h" "image.cpp" "elf.h" "ppc_context.h" "symbol.h" "symbol_table.h" "section.h")
2024-09-07 18:00:09 +06:00
target_include_directories(PowerUtils PUBLIC .)
2024-09-08 21:39:04 +06:00
target_link_libraries(PowerUtils PUBLIC disasm)