mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-24 19:17:12 +02:00
.github
bin
module
vendor
CPR
ConcurrentQueue
Fmt
JSMN
MaxmindDB
POCO
ApacheConnector
CppParser
CppUnit
Crypto
Data
MySQL
cmake
include
src
testsuite
CMakeLists.txt
Makefile
MySQL.progen
MySQL_VS90.sln
MySQL_VS90.vcproj
MySQL_vs140.sln
MySQL_vs140.vcxproj
MySQL_vs140.vcxproj.filters
MySQL_vs150.sln
MySQL_vs150.vcxproj
MySQL_vs150.vcxproj.filters
MySQL_vs160.sln
MySQL_vs160.vcxproj
MySQL_vs160.vcxproj.filters
dependencies
ODBC
PostgreSQL
SQLite
cmake
doc
include
samples
src
testsuite
CMakeLists.txt
Data.progen
Data_VS90.sln
Data_VS90.vcproj
Data_vs140.sln
Data_vs140.vcxproj
Data_vs140.vcxproj.filters
Data_vs150.sln
Data_vs150.vcxproj
Data_vs150.vcxproj.filters
Data_vs160.sln
Data_vs160.vcxproj
Data_vs160.vcxproj.filters
Makefile
dependencies
Encodings
Foundation
JSON
JWT
MongoDB
Net
NetSSL_OpenSSL
NetSSL_Win
PDF
PageCompiler
PocoDoc
ProGen
Redis
SevenZip
Util
XML
Zip
appveyor
build
cmake
contrib
doc
packaging
patches
release
travis
.gitattributes
.gitignore
.gitmodules
.travis.yml
CHANGELOG
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CONTRIBUTORS
LICENSE
Makefile
NEWS
README
README.md
VERSION
appveyor.yml
build_cmake.cmd
build_cmake.sh
build_vs140.cmd
build_vs150.cmd
build_vs160.cmd
buildwin.cmd
buildwin.ps1
components
configure
cppignore.lnx
cppignore.win
env.bat
env.sh
libversion
SimpleIni
Squirrel
TinyDir
ZMQ
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
52 lines
1.5 KiB
CMake
52 lines
1.5 KiB
CMake
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO(MYSQL_SRCS ${SRCS_G})
|
|
|
|
# Headers
|
|
file(GLOB_RECURSE HDRS_G "include/*.h")
|
|
POCO_HEADERS_AUTO(MYSQL_SRCS ${HDRS_G})
|
|
|
|
# Version Resource
|
|
if(MSVC AND BUILD_SHARED_LIBS)
|
|
source_group("Resources" FILES ${PROJECT_SOURCE_DIR}/DLLVersion.rc)
|
|
list(APPEND MYSQL_SRCS ${PROJECT_SOURCE_DIR}/DLLVersion.rc)
|
|
endif()
|
|
|
|
add_library(DataMySQL ${MYSQL_SRCS})
|
|
add_library(Poco::DataMySQL ALIAS DataMySQL)
|
|
set_target_properties(DataMySQL
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
|
OUTPUT_NAME PocoDataMySQL
|
|
DEFINE_SYMBOL MySQL_EXPORTS
|
|
)
|
|
|
|
target_link_libraries(DataMySQL PUBLIC Poco::Data MySQL::client)
|
|
target_include_directories(DataMySQL
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
$<INSTALL_INTERFACE:include>
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
|
|
)
|
|
target_compile_definitions(DataMySQL PUBLIC THREADSAFE NO_TCL)
|
|
|
|
if(WIN32)
|
|
target_compile_definitions(DataMySQL PUBLIC __LCC__) #__LCC__ define used by MySQL.h
|
|
endif()
|
|
|
|
# Some instalations don't have mysql_reset_connection() even if their version indicates otherwise
|
|
# Debian 9 (Stretch) is one such example
|
|
if(UNIX)
|
|
file(STRINGS "${MYSQL_INCLUDE_DIR}/mysql.h" lines REGEX "mysql_reset_connection")
|
|
if(lines)
|
|
target_compile_definitions(DataMySQL PRIVATE HAVE_MYSQL_RESET_CONNECTION)
|
|
endif()
|
|
endif()
|
|
|
|
POCO_INSTALL(DataMySQL)
|
|
POCO_GENERATE_PACKAGE(DataMySQL)
|
|
|
|
if(ENABLE_TESTS)
|
|
add_subdirectory(testsuite)
|
|
endif()
|