kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			25 wiersze
		
	
	
		
			319 B
		
	
	
	
		
			CMake
		
	
	
			
		
		
	
	
			25 wiersze
		
	
	
		
			319 B
		
	
	
	
		
			CMake
		
	
	
project(fcdlib)
 | 
						|
 | 
						|
set(fcdlib_SOURCES
 | 
						|
	fcdtraits.cpp
 | 
						|
	fcdproplusconst.cpp
 | 
						|
	fcdproconst.cpp
 | 
						|
)
 | 
						|
 | 
						|
set(fcdlib_HEADERS
 | 
						|
	fcdtraits.h
 | 
						|
	fcdproplusconst.h
 | 
						|
	fcdproconst.h
 | 
						|
)
 | 
						|
 | 
						|
include_directories(
 | 
						|
)
 | 
						|
 | 
						|
add_library(fcdlib SHARED
 | 
						|
	${fcdlib_SOURCES}
 | 
						|
)
 | 
						|
 | 
						|
target_link_libraries(fcdlib)
 | 
						|
 | 
						|
install(TARGETS fcdlib DESTINATION ${INSTALL_LIB_DIR})
 |