2014-08-22 17:10:24 +02:00
|
|
|
# Sources
|
|
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
|
|
POCO_SOURCES_AUTO( SRCS ${SRCS_G})
|
2014-07-09 15:49:28 +02:00
|
|
|
|
2014-08-22 17:10:24 +02:00
|
|
|
# Headers
|
|
|
|
file(GLOB_RECURSE HDRS_G "include/*.h" )
|
|
|
|
POCO_HEADERS_AUTO( SRCS ${HDRS_G})
|
2012-04-29 18:52:25 +00:00
|
|
|
|
2014-02-22 23:31:23 +04:00
|
|
|
if(MSVC AND NOT(MSVC_VERSION LESS 1400))
|
|
|
|
set_source_files_properties(src/StatementImpl.cpp
|
|
|
|
PROPERTIES COMPILE_FLAGS "/bigobj")
|
|
|
|
endif()
|
|
|
|
|
2018-06-03 18:17:50 +02:00
|
|
|
|
|
|
|
add_library(Data ${SRCS} )
|
|
|
|
add_library(Poco::Data ALIAS Data)
|
|
|
|
set_target_properties(Data
|
2014-07-09 15:49:28 +02:00
|
|
|
PROPERTIES
|
2014-08-22 17:10:24 +02:00
|
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
2018-06-03 18:17:50 +02:00
|
|
|
OUTPUT_NAME PocoData
|
2014-10-09 13:42:51 +02:00
|
|
|
DEFINE_SYMBOL Data_EXPORTS
|
|
|
|
)
|
2012-04-29 18:52:25 +00:00
|
|
|
|
2018-06-03 18:17:50 +02:00
|
|
|
target_link_libraries(Data PUBLIC Poco::Foundation)
|
|
|
|
target_include_directories(Data
|
2014-10-09 13:42:51 +02:00
|
|
|
PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:include>
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
|
|
|
|
)
|
2012-04-29 18:52:25 +00:00
|
|
|
|
2018-06-03 18:17:50 +02:00
|
|
|
POCO_INSTALL(Data)
|
|
|
|
POCO_GENERATE_PACKAGE(Data)
|
2014-10-09 13:42:51 +02:00
|
|
|
|
|
|
|
if(ENABLE_DATA_SQLITE)
|
2015-01-27 15:52:18 +01:00
|
|
|
# SQlite3 is built in any case
|
2018-06-03 18:17:50 +02:00
|
|
|
message(STATUS "SQLite Support Enabled")
|
2015-01-27 15:52:18 +01:00
|
|
|
add_subdirectory( SQLite )
|
2018-06-03 18:17:50 +02:00
|
|
|
else(ENABLE_DATA_SQLITE)
|
|
|
|
message(STATUS "SQLite Support Disabled")
|
|
|
|
endif()
|
2012-04-29 18:52:25 +00:00
|
|
|
|
2018-06-03 18:17:50 +02:00
|
|
|
if(MYSQL_FOUND AND ENABLE_DATA_MYSQL)
|
|
|
|
include_directories("${MYSQL_INCLUDE_DIR}") # TODO(Bjoe) use target_include_directories or target_link_libraries
|
|
|
|
message(STATUS "MySQL Support Enabled")
|
|
|
|
add_subdirectory( MySQL )
|
|
|
|
else()
|
|
|
|
message(STATUS "MySQL Support Disabled - no MySQL library")
|
|
|
|
endif()
|
2012-04-29 18:52:25 +00:00
|
|
|
|
2018-06-03 18:17:50 +02:00
|
|
|
if(POSTGRESQL_FOUND AND ENABLE_DATA_POSTGRESQL)
|
|
|
|
include_directories("${PostgreSQL_INCLUDE_DIR}") # TODO(Bjoe) Use target_link_libraries()
|
|
|
|
message(STATUS "PostgreSQL Support Enabled")
|
|
|
|
add_subdirectory( PostgreSQL )
|
|
|
|
else()
|
|
|
|
message(STATUS "PostgreSQL Support Disabled - no PostgreSQL library")
|
|
|
|
endif()
|
2018-05-07 11:50:39 -05:00
|
|
|
|
2018-06-03 18:17:50 +02:00
|
|
|
if(WIN32 AND NOT WINCE AND ENABLE_DATA_ODBC)
|
|
|
|
set(ODBC_LIBRARIES "odbc32" "odbccp32") # TODO(Bjoe) Verify if this is not set via find_package(ODBC)
|
|
|
|
message(STATUS "Windows native ODBC Support Enabled")
|
|
|
|
add_subdirectory( ODBC )
|
|
|
|
else()
|
|
|
|
if(ODBC_FOUND AND ENABLE_DATA_ODBC)
|
|
|
|
include_directories("${ODBC_INCLUDE_DIRECTORIES}") # TODO(Bjoe) use target_include_directories or target_link_libraries
|
|
|
|
message(STATUS "ODBC Support Enabled")
|
|
|
|
add_subdirectory( ODBC )
|
|
|
|
else()
|
|
|
|
message(STATUS "ODBC Support Disabled - no ODBC runtime")
|
|
|
|
endif()
|
|
|
|
endif()
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
if (ENABLE_TESTS)
|
2014-07-09 15:49:28 +02:00
|
|
|
add_subdirectory(samples)
|
|
|
|
add_subdirectory(testsuite)
|
2012-04-29 18:52:25 +00:00
|
|
|
endif ()
|