mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 20:40:20 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			480 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			480 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| project (sdrbench)
 | |
| 
 | |
| set(sdrbench_SOURCES
 | |
|     mainbench.cpp
 | |
|     parserbench.cpp
 | |
|     test_golay2312.cpp
 | |
| )
 | |
| 
 | |
| set(sdrbench_HEADERS
 | |
|     mainbench.h
 | |
|     parserbench.h
 | |
| )
 | |
| 
 | |
| add_library(sdrbench SHARED
 | |
|     ${sdrbench_SOURCES}
 | |
| )
 | |
| 
 | |
| include_directories(
 | |
|     ${CMAKE_SOURCE_DIR}/exports
 | |
|     ${CMAKE_SOURCE_DIR}/sdrbase
 | |
|     ${CMAKE_SOURCE_DIR}/logging
 | |
| )
 | |
| 
 | |
| target_link_libraries(sdrbench
 | |
|     Qt5::Core
 | |
|     Qt5::Gui
 | |
|     sdrbase
 | |
|     logging
 | |
| )
 | |
| 
 | |
| install(TARGETS sdrbench DESTINATION ${INSTALL_LIB_DIR})
 |