mirror of
				https://github.com/pocoproject/poco.git
				synced 2025-10-28 11:31:53 +01:00 
			
		
		
		
	 61305c01ee
			
		
	
	61305c01ee
	
	
	
		
			
			POCO_STATIC: has to be set when using poco as static library POCO_NO_ATUMATIC_LIBS: CMake config module will find the correct libraries. Don't need to guess in headers.
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(LIBNAME  "DataSQLite")
 | |
| set(POCO_LIBNAME "Poco${LIBNAME}")
 | |
| 
 | |
| # Sources
 | |
| file(GLOB SRCS_G "src/*.cpp")
 | |
| POCO_SOURCES_AUTO( SQLITE_SRCS ${SRCS_G})
 | |
| 
 | |
| # Headers
 | |
| file(GLOB_RECURSE HDRS_G "include/*.h" )
 | |
| POCO_HEADERS_AUTO( SQLITE_SRCS ${HDRS_G})
 | |
| 
 | |
| if (POCO_UNBUNDLED)
 | |
|     find_package(SQLite3)
 | |
|     set(DATASQLITELIBS ${SQLITE3_LIBRARIES})
 | |
|     include_directories("${SQLITE3_INCLUDE_DIRS}")
 | |
| else()
 | |
|     # sqlite3
 | |
|     POCO_SOURCES( SQLITE_SRCS sqlite3
 | |
|         src/sqlite3.c
 | |
|     )
 | |
| 
 | |
|     POCO_HEADERS( SQLITE_SRCS sqlite3
 | |
|         src/sqlite3.h
 | |
|     )
 | |
| 
 | |
|     set(DATASQLITELIBS "")
 | |
| endif()
 | |
| 
 | |
| if(WINCE)
 | |
|     add_definitions(-DSQLITE_MSVC_LOCALTIME_API)
 | |
| endif(WINCE)
 | |
| 
 | |
| add_definitions(-DSQLITE_THREADSAFE=1 -DSQLITE_DISABLE_LFS -DSQLITE_OMIT_UTF16 -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_COMPLETE -DSQLITE_OMIT_TCL_VARIABLE -DSQLITE_OMIT_DEPRECATED)
 | |
| 
 | |
| add_library( "${LIBNAME}" ${LIB_MODE} ${SQLITE_SRCS} )
 | |
| add_library( "${POCO_LIBNAME}" ALIAS "${LIBNAME}")
 | |
| set_target_properties( "${LIBNAME}"
 | |
|     PROPERTIES
 | |
|     VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
 | |
|     OUTPUT_NAME ${POCO_LIBNAME}
 | |
|     DEFINE_SYMBOL SQLite_EXPORTS
 | |
|     )
 | |
| 
 | |
| target_link_libraries( "${LIBNAME}" Foundation Data ${DATASQLITELIBS} )
 | |
| target_include_directories( "${LIBNAME}"
 | |
|     PUBLIC
 | |
|         $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
 | |
|         $<INSTALL_INTERFACE:include>
 | |
|     PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
 | |
|     )
 | |
| target_compile_definitions("${LIBNAME}" PUBLIC ${LIB_MODE_DEFINITIONS})
 | |
| 
 | |
| POCO_INSTALL("${LIBNAME}")
 | |
| POCO_GENERATE_PACKAGE("${LIBNAME}")
 | |
| 
 | |
| if (ENABLE_TESTS)
 | |
|     add_subdirectory(testsuite)
 | |
| endif ()
 | |
| 
 |