mirror of
				https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
				synced 2025-10-31 18:47:47 +00:00 
			
		
		
		
	 e3649153b8
			
		
	
	e3649153b8
	
	
	
		
			
			Used CMAKE_DEBUG_POSTFIX instead LIB_EXT for library name decoration on debug builds (less intrusive and more flexible)
		
			
				
	
	
		
			29 lines
		
	
	
		
			600 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			600 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(LIBNAME "PocoXML")
 | |
| 
 | |
| aux_source_directory(src SRCS)
 | |
| 
 | |
| add_definitions(-D_USRDLL -DXML_NS -DXML_DTD -DHAVE_EXPAT_CONFIG_H -DXML_EXPORTS)
 | |
| 
 | |
| add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
 | |
| set_target_properties( ${LIBNAME} 
 | |
| 	PROPERTIES 
 | |
| 	VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
 | |
| target_link_libraries( ${LIBNAME} PocoFoundation)
 | |
| 
 | |
| install(
 | |
|     DIRECTORY include/Poco
 | |
|     DESTINATION include
 | |
|     PATTERN ".svn" EXCLUDE
 | |
|     )
 | |
|     
 | |
| install(
 | |
|     TARGETS ${LIBNAME}
 | |
|     DESTINATION lib
 | |
|     )
 | |
| 
 | |
| if (ENABLE_TESTS)
 | |
|   add_subdirectory(samples)
 | |
|   add_subdirectory(testsuite)
 | |
| endif ()
 | |
| 
 |