mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-25 17:10:59 +01:00
0fd90ec722
- explicitly list files - use find_package for MySQL and ODBC - remove unused code - remove unnecessary include dirs - support unbundled SQLite3 - replace tabs by spaces Reviewed-by: Roger Meier <r.meier@siemens.com>
42 lines
933 B
CMake
42 lines
933 B
CMake
set(LIBNAME "PocoDataMySQL")
|
|
|
|
set(SRCS
|
|
src/Binder.cpp
|
|
src/Connector.cpp
|
|
src/Extractor.cpp
|
|
src/MySQLException.cpp
|
|
src/MySQLStatementImpl.cpp
|
|
src/ResultMetadata.cpp
|
|
src/SessionHandle.cpp
|
|
src/SessionImpl.cpp
|
|
src/StatementExecutor.cpp
|
|
src/Utility.cpp
|
|
)
|
|
|
|
add_definitions(-DTHREADSAFE -DNO_TCL)
|
|
|
|
include_directories( include ${MYSQL_INCLUDE_DIR})
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( ${LIBNAME}
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
|
target_link_libraries( ${LIBNAME} PocoData PocoFoundation ${MYSQL_LIB})
|
|
|
|
install(
|
|
DIRECTORY include/Poco
|
|
DESTINATION include
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
|
|
install(
|
|
TARGETS ${LIBNAME}
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
RUNTIME DESTINATION bin
|
|
)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory(testsuite)
|
|
endif ()
|