mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-30 15:29:36 -06:00
- 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
18 lines
475 B
Plaintext
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
|
|
}
|