mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-30 23:39:49 -06:00
30 lines
694 B
Plaintext
30 lines
694 B
Plaintext
# Dependencies include and library paths
|
|
# ---
|
|
|
|
win32-g++* {
|
|
}
|
|
else:win32-msvc* {
|
|
# includes
|
|
# MySQL C library is used by ORM and it uses mysql_ping()
|
|
INCLUDEPATH += $$quote(C:/Program Files/MySQL/MySQL Server 8.0/include)
|
|
# range-v3
|
|
INCLUDEPATH += $$quote(E:/xyz/vcpkg/installed/x64-windows/include)
|
|
# boost
|
|
# INCLUDEPATH += $$quote(E:/c_libs/boost/boost_latest)
|
|
|
|
LIBS += $$quote(-LC:/Program Files/MySQL/MySQL Server 8.0/lib)
|
|
|
|
LIBS += -llibmysql
|
|
}
|
|
else:unix {
|
|
# includes
|
|
# range-v3
|
|
INCLUDEPATH += $$quote(/home/xyz/vcpkg/installed/x64-linux/include)
|
|
|
|
# libraries
|
|
LIBS += -lmysqlclient
|
|
|
|
# others
|
|
clang: CONFIG *= use_lld_linker
|
|
}
|