mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-07 09:48:04 +01:00
e624b3315c
* Improve find thirdparty cmake module. Cleanup cmake build system * Add additional settings for thirdparty paths and fix windows build * Improve cmake getting started doc * Fix postgresql build * Add additional path for odbc windows kits
33 lines
892 B
CMake
33 lines
892 B
CMake
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO( MYSQL_SRCS ${SRCS_G})
|
|
|
|
# Headers
|
|
file(GLOB_RECURSE HDRS_G "include/*.h" )
|
|
POCO_HEADERS_AUTO( MYSQL_SRCS ${HDRS_G})
|
|
|
|
add_library(DataMySQL ${MYSQL_SRCS} )
|
|
add_library(Poco::DataMySQL ALIAS DataMySQL)
|
|
set_target_properties(DataMySQL
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
|
OUTPUT_NAME PocoDataMySQL
|
|
DEFINE_SYMBOL MySQL_EXPORTS
|
|
)
|
|
|
|
target_link_libraries(DataMySQL PUBLIC Poco::Data MySQL::client)
|
|
target_include_directories(DataMySQL
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
|
|
)
|
|
target_compile_definitions(DataMySQL PUBLIC THREADSAFE NO_TCL)
|
|
|
|
POCO_INSTALL(DataMySQL)
|
|
POCO_GENERATE_PACKAGE(DataMySQL)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory(testsuite)
|
|
endif ()
|