mirror of
				https://github.com/hedge-dev/XenonRecomp.git
				synced 2025-10-30 07:11:38 +00:00 
			
		
		
		
	 4650dc69fb
			
		
	
	
		4650dc69fb
		
			
		
	
	
	
	
		
			
			* Compiling and running on Linux. * Fix xpointer constructor. * Convert dependencies to submodules. * Fix wchar_t usage for Linux.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			378 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			14 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)
 | |
| 
 |