Files
TinyORM/conf.pri.example
silverqx 49eae88995 added partial gcc compatibility
I still was not able to compile it on gcc because of the cyclic
dependency of models.

 - removed zero from dll names where possible
2021-05-07 11:14:24 +02:00

27 lines
629 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)
LIBS += -lmysqlclient
}