mirror of
				https://github.com/AlexandreRouma/SDRPlusPlus.git
				synced 2025-10-31 08:58:13 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			624 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			624 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| cmake_minimum_required(VERSION 3.13)
 | |
| project(meteor_demodulator)
 | |
| 
 | |
| if (MSVC)
 | |
|     set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc")
 | |
| else()
 | |
|     set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive")
 | |
| endif (MSVC)
 | |
| 
 | |
| file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
 | |
| 
 | |
| include_directories("src/")
 | |
| include_directories("src/libcorrect/")
 | |
| 
 | |
| set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=native")
 | |
| 
 | |
| add_library(meteor_demodulator SHARED ${SRC})
 | |
| target_link_libraries(meteor_demodulator PRIVATE sdrpp_core)
 | |
| set_target_properties(meteor_demodulator PROPERTIES PREFIX "")
 | |
| 
 | |
| # Install directives
 | |
| install(TARGETS meteor_demodulator DESTINATION lib/sdrpp/plugins) |