mirror of
				https://github.com/hedge-dev/XenonRecomp.git
				synced 2025-10-30 07:11:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			360 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			11 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)
 | 
