kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			34 wiersze
		
	
	
		
			489 B
		
	
	
	
		
			CMake
		
	
	
			
		
		
	
	
			34 wiersze
		
	
	
		
			489 B
		
	
	
	
		
			CMake
		
	
	
project(logging)
 | 
						|
 | 
						|
set(logging_SOURCES
 | 
						|
   dualfilelogger.cpp
 | 
						|
   loggerwithfile.cpp
 | 
						|
   filelogger.cpp
 | 
						|
   logger.cpp
 | 
						|
   logmessage.cpp
 | 
						|
)
 | 
						|
 | 
						|
set(httpserver_HEADERS
 | 
						|
   dualfilelogger.h
 | 
						|
   loggerwithfile.h
 | 
						|
   filelogger.h
 | 
						|
   logger.h
 | 
						|
   logmessage.h
 | 
						|
   logglobal.h
 | 
						|
)
 | 
						|
 | 
						|
include_directories(
 | 
						|
    ${CMAKE_SOURCE_DIR}/exports
 | 
						|
)
 | 
						|
 | 
						|
add_library(logging SHARED
 | 
						|
    ${logging_SOURCES}
 | 
						|
)
 | 
						|
 | 
						|
target_link_libraries(logging
 | 
						|
    Qt5::Core
 | 
						|
    Qt5::Network
 | 
						|
)
 | 
						|
 | 
						|
install(TARGETS logging DESTINATION ${INSTALL_LIB_DIR})
 |