mirror of
				https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
				synced 2025-10-31 02:27:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			583 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			583 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(LIBNAME "PocoMongoDB")
 | |
| 
 | |
| aux_source_directory(src SRCS)
 | |
| 
 | |
| if (NOT POCO_STATIC)
 | |
|   add_definitions(-DMONGODB_EXPORTS)
 | |
| endif (NOT POCO_STATIC)
 | |
| 
 | |
| add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
 | |
| set_target_properties( ${LIBNAME} 
 | |
| 	PROPERTIES
 | |
| 	VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
 | |
| target_link_libraries( ${LIBNAME} PocoNet PocoFoundation)
 | |
| 
 | |
| install(
 | |
|     DIRECTORY include/Poco
 | |
|     DESTINATION include
 | |
|     PATTERN ".svn" EXCLUDE
 | |
|     )
 | |
|     
 | |
| install(
 | |
|     TARGETS ${LIBNAME}
 | |
|     DESTINATION lib
 | |
|     )
 | |
| 
 | |
| if (ENABLE_TESTS)
 | |
|   add_subdirectory(testsuite)
 | |
| endif ()
 | |
| 
 | 
