mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			755 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			755 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| project (sdrbench)
 | |
| 
 | |
| if (FT8_SUPPORT)
 | |
|     set(sdrbench_FT8_LIB ft8)
 | |
| endif()
 | |
| 
 | |
| set(sdrbench_SOURCES
 | |
|     mainbench.cpp
 | |
|     parserbench.cpp
 | |
|     test_golay2312.cpp
 | |
|     test_ft8.cpp
 | |
|     test_callsign.cpp
 | |
|     test_ft8protocols.cpp
 | |
| )
 | |
| 
 | |
| set(sdrbench_HEADERS
 | |
|     mainbench.h
 | |
|     parserbench.h
 | |
| )
 | |
| 
 | |
| add_library(sdrbench SHARED
 | |
|     ${sdrbench_SOURCES}
 | |
| )
 | |
| 
 | |
| include_directories(
 | |
|     ${FFTW3F_INCLUDE_DIRS}
 | |
|     ${Boost_INCLUDE_DIRS}
 | |
|     ${CMAKE_SOURCE_DIR}/exports
 | |
|     ${CMAKE_SOURCE_DIR}/sdrbase
 | |
|     ${CMAKE_SOURCE_DIR}/logging
 | |
|     ${CMAKE_SOURCE_DIR}
 | |
| )
 | |
| 
 | |
| target_link_libraries(sdrbench
 | |
|     Boost::disable_autolinking
 | |
|     ${FFTW3F_LIBRARIES}
 | |
|     Qt::Core
 | |
|     Qt::Gui
 | |
|     sdrbase
 | |
|     logging
 | |
|     ${sdrbench_FT8_LIB}
 | |
| )
 | |
| 
 | |
| install(TARGETS sdrbench DESTINATION ${INSTALL_LIB_DIR})
 |