kopia lustrzana https://github.com/AlexandreRouma/SDRPlusPlus
				
				
				
			
		
			
				
	
	
		
			16 wiersze
		
	
	
		
			380 B
		
	
	
	
		
			CMake
		
	
	
			
		
		
	
	
			16 wiersze
		
	
	
		
			380 B
		
	
	
	
		
			CMake
		
	
	
| cmake_minimum_required(VERSION 3.13)
 | |
| project(recorder)
 | |
| 
 | |
| if (MSVC)
 | |
|     set(CMAKE_CXX_FLAGS "-O2 /std:c++17")
 | |
| else()
 | |
|     set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
 | |
| endif (MSVC)
 | |
| 
 | |
| file(GLOB SRC "src/*.cpp")
 | |
| 
 | |
| include_directories("src/")
 | |
| 
 | |
| add_library(recorder SHARED ${SRC})
 | |
| target_link_libraries(recorder PRIVATE sdrpp_core)
 | |
| set_target_properties(recorder PROPERTIES PREFIX "") |