2012-04-29 18:52:25 +00:00
|
|
|
set(LIBNAME "PocoData")
|
|
|
|
|
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
|
|
|
|
|
|
|
if (NOT POCO_STATIC)
|
2014-08-22 17:10:24 +02:00
|
|
|
add_definitions(-DTHREADSAFE)
|
2012-04-29 18:52:25 +00:00
|
|
|
endif (NOT POCO_STATIC)
|
|
|
|
|
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()
|
|
|
|
|
2012-04-29 18:52:25 +00:00
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
2014-07-09 15:49:28 +02:00
|
|
|
set_target_properties( ${LIBNAME}
|
|
|
|
PROPERTIES
|
2014-08-22 17:10:24 +02:00
|
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
|
|
|
DEFINE_SYMBOL Data_EXPORTS)
|
2012-12-08 15:54:38 -02:00
|
|
|
target_link_libraries( ${LIBNAME} PocoFoundation)
|
2012-04-29 18:52:25 +00:00
|
|
|
|
|
|
|
install(
|
|
|
|
DIRECTORY include/Poco
|
|
|
|
DESTINATION include
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
2014-07-09 15:49:28 +02:00
|
|
|
|
2012-04-29 18:52:25 +00:00
|
|
|
install(
|
|
|
|
TARGETS ${LIBNAME}
|
2014-05-21 14:16:34 -07:00
|
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
|
|
RUNTIME DESTINATION bin
|
2012-04-29 18:52:25 +00:00
|
|
|
)
|
|
|
|
|
2014-07-09 15:49:28 +02:00
|
|
|
# SQlite3 is built in any case
|
2012-04-29 18:52:25 +00:00
|
|
|
add_subdirectory( SQLite )
|
|
|
|
|
2014-07-09 15:49:28 +02:00
|
|
|
find_package(MySQL)
|
2012-04-29 18:52:25 +00:00
|
|
|
if(MYSQL_FOUND)
|
2014-08-22 17:10:24 +02:00
|
|
|
include_directories("${MYSQL_INCLUDE_DIR}")
|
|
|
|
message(STATUS "MySQL Support Enabled")
|
2012-04-29 18:52:25 +00:00
|
|
|
add_subdirectory( MySQL )
|
2014-08-22 17:10:24 +02:00
|
|
|
else()
|
|
|
|
message(STATUS "MySQL Support Disabled - no MySQL library")
|
2012-04-29 18:52:25 +00:00
|
|
|
endif(MYSQL_FOUND)
|
|
|
|
|
2014-07-09 15:49:28 +02:00
|
|
|
find_package(ODBC)
|
2012-04-29 18:52:25 +00:00
|
|
|
if(CMAKE_SYSTEM MATCHES "Windows")
|
2014-08-22 17:10:24 +02:00
|
|
|
set(ODBC_LIBRARIES "")
|
2014-07-09 15:49:28 +02:00
|
|
|
message(STATUS "Windows native ODBC Support Enabled")
|
|
|
|
add_subdirectory( ODBC )
|
2012-04-29 18:52:25 +00:00
|
|
|
else ()
|
2014-08-22 17:10:24 +02:00
|
|
|
if (ODBC_FOUND)
|
|
|
|
include_directories("${ODBC_INCLUDE_DIRECTORIES}")
|
2014-07-09 15:49:28 +02:00
|
|
|
message(STATUS "ODBC Support Enabled")
|
|
|
|
add_subdirectory( ODBC )
|
2014-08-22 17:10:24 +02:00
|
|
|
else ()
|
|
|
|
message(STATUS "ODBC Support Disabled - no ODBC runtime")
|
2014-07-09 15:49:28 +02:00
|
|
|
endif ()
|
2012-04-29 18:52:25 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
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 ()
|