mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-19 19:01:17 +00:00
12 lines
360 B
CMake
12 lines
360 B
CMake
# cmake_minimum_required (VERSION 3.16)
|
|
|
|
project("PowerAnalyse")
|
|
|
|
add_executable(PowerAnalyse "main.cpp" "function.h" "function.cpp")
|
|
add_library(LibPowerAnalyse "function.h" "function.cpp")
|
|
|
|
target_include_directories(LibPowerAnalyse PUBLIC .)
|
|
target_link_libraries(LibPowerAnalyse PUBLIC PowerUtils)
|
|
|
|
target_link_libraries(PowerAnalyse PRIVATE PowerUtils)
|