mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-05-31 22:32:05 +00:00
11 lines
217 B
CMake
11 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)
|