2019-04-24 09:06:28 +00:00
|
|
|
add_library (mysqlxx
|
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/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)
|
2018-11-21 19:20:27 +00:00
|
|
|
set (MYSQLCLIENT_LIBRARIES ${STATIC_MYSQLCLIENT_LIB})
|
2018-08-02 00:49:31 +00:00
|
|
|
endif ()
|
2016-12-01 22:44:59 +00:00
|
|
|
endif ()
|
2016-02-07 21:58:58 +00:00
|
|
|
|
2019-04-24 21:33:04 +00:00
|
|
|
target_link_libraries(mysqlxx PUBLIC common ${Poco_Util_LIBRARY} ${Poco_Foundation_LIBRARY} PRIVATE ${MYSQLCLIENT_LIBRARIES} PUBLIC ${Boost_SYSTEM_LIBRARY} PRIVATE ${ZLIB_LIBRARIES})
|
2019-03-22 11:18:24 +00:00
|
|
|
if(OPENSSL_LIBRARIES)
|
|
|
|
target_link_libraries(mysqlxx PRIVATE ${OPENSSL_LIBRARIES})
|
|
|
|
endif()
|
|
|
|
target_link_libraries(mysqlxx PRIVATE ${PLATFORM_LIBRARIES})
|
|
|
|
|
|
|
|
if (NOT USE_INTERNAL_MYSQL_LIBRARY AND OPENSSL_INCLUDE_DIR)
|
2018-11-21 19:20:27 +00:00
|
|
|
target_include_directories (mysqlxx SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR})
|
|
|
|
endif ()
|
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 ()
|