2018-08-27 14:39:20 +00:00
|
|
|
add_library (mysqlxx ${LINK_MODE}
|
2017-04-01 07:20:54 +00:00
|
|
|
src/Connection.cpp
|
|
|
|
src/Exception.cpp
|
|
|
|
src/Query.cpp
|
|
|
|
src/ResultBase.cpp
|
|
|
|
src/StoreQueryResult.cpp
|
|
|
|
src/UseQueryResult.cpp
|
|
|
|
src/Row.cpp
|
|
|
|
src/Value.cpp
|
|
|
|
src/Pool.cpp
|
|
|
|
src/PoolWithFailover.cpp
|
|
|
|
|
|
|
|
include/mysqlxx/Connection.h
|
|
|
|
include/mysqlxx/Exception.h
|
|
|
|
include/mysqlxx/Manip.h
|
|
|
|
include/mysqlxx/mysqlxx.h
|
|
|
|
include/mysqlxx/Null.h
|
|
|
|
include/mysqlxx/Pool.h
|
|
|
|
include/mysqlxx/PoolWithFailover.h
|
|
|
|
include/mysqlxx/Query.h
|
|
|
|
include/mysqlxx/ResultBase.h
|
|
|
|
include/mysqlxx/Row.h
|
|
|
|
include/mysqlxx/StoreQueryResult.h
|
|
|
|
include/mysqlxx/Transaction.h
|
|
|
|
include/mysqlxx/Types.h
|
|
|
|
include/mysqlxx/UseQueryResult.h
|
|
|
|
include/mysqlxx/Value.h
|
2016-02-07 21:58:58 +00:00
|
|
|
)
|
|
|
|
|
2017-08-03 12:44:39 +00:00
|
|
|
target_include_directories (mysqlxx PUBLIC include)
|
|
|
|
|
2018-08-02 00:49:31 +00:00
|
|
|
if (USE_INTERNAL_MYSQL_LIBRARY)
|
2016-12-24 01:03:10 +00:00
|
|
|
|
2018-08-02 00:49:31 +00:00
|
|
|
else ()
|
|
|
|
set(PLATFORM_LIBRARIES ${CMAKE_DL_LIBS})
|
|
|
|
|
|
|
|
if (USE_MYSQL)
|
|
|
|
target_include_directories (mysqlxx SYSTEM PRIVATE ${MYSQL_INCLUDE_DIR})
|
|
|
|
endif ()
|
2017-09-04 17:04:33 +00:00
|
|
|
|
2018-08-02 00:49:31 +00:00
|
|
|
if (APPLE)
|
|
|
|
find_library (ICONV_LIBRARY iconv)
|
|
|
|
set (MYSQLCLIENT_LIBRARIES ${MYSQLCLIENT_LIBRARIES} ${STATIC_MYSQLCLIENT_LIB} ${ICONV_LIBRARY})
|
|
|
|
elseif (USE_STATIC_LIBRARIES AND STATIC_MYSQLCLIENT_LIB)
|
|
|
|
set (MYSQLCLIENT_LIB ${CMAKE_CURRENT_BINARY_DIR}/libmysqlclient.a)
|
|
|
|
add_custom_command (
|
|
|
|
OUTPUT ${MYSQLCLIENT_LIB}
|
|
|
|
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/patch.sh ${STATIC_MYSQLCLIENT_LIB} ${MYSQLCLIENT_LIB}
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
COMMENT "Patching mysqlclient library.")
|
|
|
|
add_custom_target (our_mysql_client DEPENDS ${MYSQLCLIENT_LIB})
|
|
|
|
add_dependencies (mysqlxx our_mysql_client)
|
|
|
|
set (MYSQLCLIENT_LIBRARIES ${MYSQLCLIENT_LIB})
|
|
|
|
endif ()
|
2016-12-01 22:44:59 +00:00
|
|
|
endif ()
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2018-09-06 18:05:33 +00:00
|
|
|
target_link_libraries (mysqlxx common ${Poco_Util_LIBRARY} ${MYSQLCLIENT_LIBRARIES} ${OPENSSL_LIBRARIES} ${ZLIB_LIBRARIES} ${PLATFORM_LIBRARIES})
|
2018-06-06 20:21:58 +00:00
|
|
|
target_include_directories (mysqlxx SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR})
|
2016-12-01 22:44:59 +00:00
|
|
|
|
|
|
|
if (ENABLE_TESTS)
|
2017-04-01 07:20:54 +00:00
|
|
|
add_subdirectory (src/tests)
|
2017-04-10 17:43:30 +00:00
|
|
|
endif ()
|