2011-09-14 13:23:36 +00:00
|
|
|
set(LIBNAME "PocoDataODBC")
|
2012-01-08 19:10:15 +00:00
|
|
|
set(LIBNAME "${LIBNAME}${LIB_EXT}")
|
2009-02-18 20:47:32 +00:00
|
|
|
|
2009-03-08 17:03:18 +00:00
|
|
|
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
|
|
|
|
)
|
2009-02-18 20:47:32 +00:00
|
|
|
|
|
|
|
add_definitions( ${ODBC_CFLAGS} )
|
|
|
|
|
|
|
|
include_directories( include )
|
|
|
|
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
|
|
set_target_properties( ${LIBNAME}
|
2012-01-07 13:45:03 +00:00
|
|
|
PROPERTIES
|
2011-09-15 08:31:51 +00:00
|
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
2012-01-08 19:10:15 +00:00
|
|
|
target_link_libraries( ${LIBNAME} PocoData${LIB_EXT} PocoFoundation${LIB_EXT} ${ODBC_LINK_FLAGS})
|
2009-02-18 20:47:32 +00:00
|
|
|
|
|
|
|
install(
|
|
|
|
DIRECTORY include/Poco
|
|
|
|
DESTINATION include
|
2009-04-27 19:22:30 +00:00
|
|
|
PATTERN ".svn" EXCLUDE
|
2009-02-18 20:47:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
2012-01-07 13:45:03 +00:00
|
|
|
TARGETS ${LIBNAME}
|
2009-02-18 20:47:32 +00:00
|
|
|
DESTINATION lib
|
|
|
|
)
|
|
|
|
|
2011-01-22 11:46:03 +00:00
|
|
|
if (ENABLE_TESTS)
|
|
|
|
add_subdirectory(testsuite)
|
|
|
|
endif ()
|