mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-27 19:59:46 +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>
46 lines
1001 B
CMake
46 lines
1001 B
CMake
set(LIBNAME "PocoDataODBC")
|
|
|
|
set(SRCS
|
|
src/Binder.cpp
|
|
src/ConnectionHandle.cpp
|
|
src/Connector.cpp
|
|
src/EnvironmentHandle.cpp
|
|
src/Extractor.cpp
|
|
src/ODBCException.cpp
|
|
src/ODBCMetaColumn.cpp
|
|
src/ODBCStatementImpl.cpp
|
|
src/Parameter.cpp
|
|
src/Preparator.cpp
|
|
src/SessionImpl.cpp
|
|
src/TypeInfo.cpp
|
|
src/Unicode.cpp
|
|
src/Utility.cpp
|
|
)
|
|
|
|
add_definitions( ${ODBC_CFLAGS} )
|
|
|
|
include_directories( include )
|
|
|
|
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 ${ODBC_LINK_FLAGS})
|
|
|
|
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 ()
|