mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-19 10:51:18 +00:00
15 lines
378 B
CMake
15 lines
378 B
CMake
![]() |
# cmake_minimum_required (VERSION 3.16)
|
||
|
|
||
|
project("XenonAnalyse")
|
||
|
|
||
|
add_executable(XenonAnalyse
|
||
|
"main.cpp"
|
||
|
"function.cpp")
|
||
|
|
||
|
target_link_libraries(XenonAnalyse PRIVATE XenonUtils fmt::fmt)
|
||
|
|
||
|
add_library(LibXenonAnalyse "function.cpp")
|
||
|
target_include_directories(LibXenonAnalyse PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||
|
target_link_libraries(LibXenonAnalyse PUBLIC XenonUtils)
|
||
|
|