mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-21 10:29:36 -06:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
# Dependencies include and library paths
|
|
# ---
|
|
|
|
# MinGW
|
|
win32-g++|win32-clang-g++ {
|
|
# Enable ccache wrapper
|
|
CONFIG *= tiny_ccache
|
|
|
|
# Includes
|
|
# tabulate
|
|
INCLUDEPATH += $$quote(C:/msys64/home/xyz/vcpkg/installed/x64-mingw-dynamic/include/)
|
|
QMAKE_CXXFLAGS += -isystem $$shell_quote(C:/msys64/home/xyz/vcpkg/installed/x64-mingw-dynamic/include/)
|
|
|
|
# Use faster linker
|
|
# CONFIG *= use_lld_linker does not work on MinGW
|
|
QMAKE_LFLAGS *= -fuse-ld=lld
|
|
}
|
|
else:win32-msvc|win32-clang-msvc {
|
|
# Enable ccache wrapper
|
|
# CONFIG *= tiny_ccache
|
|
|
|
# Includes
|
|
# range-v3 and tabulate
|
|
INCLUDEPATH += $$quote(E:/xyz/vcpkg/installed/x64-windows/include/)
|
|
|
|
win32-clang-msvc: \
|
|
QMAKE_CXXFLAGS += -imsvc $$shell_quote(E:/xyz/vcpkg/installed/x64-windows/include/)
|
|
}
|
|
else:unix {
|
|
# Includes
|
|
# range-v3 and tabulate
|
|
QMAKE_CXXFLAGS += -isystem $$shell_quote(/home/xyz/vcpkg/installed/x64-linux/include/)
|
|
|
|
# Use faster linkers
|
|
clang: CONFIG *= use_lld_linker
|
|
else: CONFIG *= use_gold_linker
|
|
}
|