mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-22 04:47:13 +00:00

* Compiling and running on Linux. * Fix xpointer constructor. * Convert dependencies to submodules. * Fix wchar_t usage for Linux.
15 lines
378 B
CMake
15 lines
378 B
CMake
# cmake_minimum_required (VERSION 3.16)
|
|
|
|
project("PowerAnalyse")
|
|
|
|
add_executable(PowerAnalyse
|
|
"main.cpp"
|
|
"function.cpp")
|
|
|
|
target_link_libraries(PowerAnalyse PRIVATE PowerUtils fmt::fmt)
|
|
|
|
add_library(LibPowerAnalyse "function.cpp")
|
|
target_include_directories(LibPowerAnalyse PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_link_libraries(LibPowerAnalyse PUBLIC PowerUtils)
|
|
|