mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-10-30 07:11:38 +00:00
10 lines
217 B
CMake
10 lines
217 B
CMake
project("XenonUtils")
|
|
|
|
add_library(XenonUtils
|
|
"disasm.cpp"
|
|
"xex.cpp"
|
|
"image.cpp"
|
|
"xdbf_wrapper.cpp")
|
|
|
|
target_include_directories(XenonUtils PUBLIC .)
|
|
target_link_libraries(XenonUtils PUBLIC disasm)
|