Files
TinyORM/conf.pri.example
silverqx d45aec0a0f enhanced qmake build system
- removed hard-coded dependencies
 - user specific includes or libraries can be defined in the conf.pri
 - tests have it's own conf.pri
 - qmake related pri files moved to the qmake/ folder
2021-04-11 16:33:44 +02:00

18 lines
475 B
Plaintext

# Dependencies include and library paths
# ---
win32-g++* {
}
else:win32-msvc* {
# 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:/c/qMedia/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
}