kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			29 wiersze
		
	
	
		
			395 B
		
	
	
	
		
			CMake
		
	
	
			
		
		
	
	
			29 wiersze
		
	
	
		
			395 B
		
	
	
	
		
			CMake
		
	
	
| project(fcdlib)
 | |
| 
 | |
| set(fcdlib_SOURCES
 | |
| 	fcdtraits.cpp
 | |
| 	fcdproplusconst.cpp
 | |
| 	fcdproconst.cpp
 | |
| )
 | |
| 
 | |
| set(fcdlib_HEADERS
 | |
| 	fcdtraits.h
 | |
| 	fcdproplusconst.h
 | |
| 	fcdproconst.h
 | |
| )
 | |
| 
 | |
| include_directories(
 | |
| 	.
 | |
| 	${CMAKE_CURRENT_BINARY_DIR}
 | |
| )
 | |
| 
 | |
| #add_definitions(-DQT_PLUGIN)
 | |
| add_definitions(-DQT_SHARED)
 | |
| 
 | |
| add_library(fcdlib SHARED
 | |
| 	${fcdlib_SOURCES}
 | |
| )
 | |
| 
 | |
| target_link_libraries(fcdlib)
 | |
| 
 | |
| install(TARGETS fcdlib DESTINATION lib) |