mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| project(limesdroutput)
 | |
| 
 | |
| set(limesdroutput_SOURCES
 | |
| 	limesdroutput.cpp
 | |
| 	limesdroutputplugin.cpp
 | |
|     limesdroutputsettings.cpp
 | |
|     limesdroutputwebapiadapter.cpp
 | |
| 	limesdroutputthread.cpp
 | |
| )
 | |
| 
 | |
| set(limesdroutput_HEADERS
 | |
| 	limesdroutput.h
 | |
| 	limesdroutputplugin.h
 | |
|     limesdroutputsettings.h
 | |
|     limesdroutputwebapiadapter.h
 | |
| 	limesdroutputthread.h
 | |
| )
 | |
| 
 | |
| include_directories(
 | |
|         ${CMAKE_SOURCE_DIR}/swagger/sdrangel/code/qt5/client
 | |
| 	${CMAKE_SOURCE_DIR}/devices
 | |
| 	${LIMESUITE_INCLUDE_DIR}
 | |
| )
 | |
| 
 | |
| if(NOT SERVER_MODE)
 | |
|     set(limesdroutput_SOURCES
 | |
|         ${limesdroutput_SOURCES}
 | |
|         limesdroutputgui.cpp
 | |
| 
 | |
|         limesdroutputgui.ui
 | |
|     )
 | |
|     set(limesdroutput_HEADERS
 | |
|         ${limesdroutput_HEADERS}
 | |
|         limesdroutputgui.h
 | |
|     )
 | |
| 
 | |
|     set(TARGET_NAME outputlimesdr)
 | |
|     set(TARGET_LIB "Qt::Widgets")
 | |
|     set(TARGET_LIB_GUI "sdrgui")
 | |
|     set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
 | |
| else()
 | |
|     set(TARGET_NAME outputlimesdrsrv)
 | |
|     set(TARGET_LIB "")
 | |
|     set(TARGET_LIB_GUI "")
 | |
|     set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
 | |
| endif()
 | |
| 
 | |
| add_library(${TARGET_NAME} SHARED
 | |
| 	${limesdroutput_SOURCES}
 | |
| )
 | |
| 
 | |
| if(LIMESUITE_EXTERNAL)
 | |
|     add_dependencies(${TARGET_NAME} limesuite)
 | |
| endif()
 | |
| 
 | |
| target_link_libraries(${TARGET_NAME}
 | |
|         Qt::Core
 | |
|         ${TARGET_LIB}
 | |
| 	sdrbase
 | |
| 	${TARGET_LIB_GUI}
 | |
|         swagger
 | |
|         ${LIMESUITE_LIBRARY}
 | |
|         limesdrdevice
 | |
| )
 | |
| 
 | |
| install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
 | |
| 
 | |
| # Install debug symbols
 | |
| if (WIN32)
 | |
|     install(FILES $<TARGET_PDB_FILE:${TARGET_NAME}> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${INSTALL_FOLDER} )
 | |
| endif()
 |