mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-29 15:01:08 -06:00
LLD isn't faster than bfd, I also did linking when bfd was faster than LLD. - also updated docs [skip ci]
77 lines
2.1 KiB
Plaintext
77 lines
2.1 KiB
Plaintext
# Migrations and Seeders header files
|
|
# ---
|
|
|
|
# Tom example migrations
|
|
include($$TINYORM_SOURCE_TREE/tests/database/migrations.pri)
|
|
# Or include yours migrations
|
|
#include(/home/xyz/your_project/database/migrations.pri)
|
|
|
|
# Tom example seeders
|
|
include($$TINYORM_SOURCE_TREE/tests/database/seeders.pri)
|
|
# Or include yours seeders
|
|
#include(/home/xyz/your_project/database/seeders.pri)
|
|
|
|
# Dependencies include and library paths
|
|
# ---
|
|
|
|
disable_autoconf {
|
|
# load(private/tiny_system_includepath)
|
|
load(private/tiny_find_packages)
|
|
}
|
|
|
|
# MinGW
|
|
win32-g++|win32-clang-g++ {
|
|
# Enable ccache wrapper
|
|
# CONFIG *= ccache
|
|
|
|
# Use alternative linker (for both GCC and Clang)
|
|
# CONFIG *= use_lld_linker does not work on MinGW
|
|
# QMAKE_LFLAGS *= -fuse-ld=lld
|
|
|
|
# Nothing to do, auto-configuration is enabled
|
|
!disable_autoconf: return()
|
|
|
|
# Includes
|
|
# vcpkg - range-v3 and tabulate
|
|
tiny_find_vcpkg()
|
|
# tiny_find_vcpkg($$quote(C:/msys64/home/xyz/Code/vcpkg/), x64-mingw-dynamic)
|
|
# tiny_add_system_includepath(\
|
|
# $$quote(C:/msys64/home/xyz/Code/vcpkg/installed/x64-mingw-dynamic/include/))
|
|
}
|
|
|
|
# Windows (excluding MinGW)
|
|
else:win32-msvc|win32-clang-msvc {
|
|
# Enable ccache wrapper
|
|
# CONFIG *= ccache
|
|
|
|
# Nothing to do, auto-configuration is enabled
|
|
!disable_autoconf: return()
|
|
|
|
# Includes
|
|
# vcpkg - range-v3 and tabulate
|
|
tiny_find_vcpkg()
|
|
# tiny_find_vcpkg($$quote(E:/xyz/vcpkg/), x64-windows)
|
|
# tiny_add_system_includepath($$quote(E:/xyz/vcpkg/installed/x64-windows/include/))
|
|
}
|
|
|
|
# Unix
|
|
else:unix {
|
|
# Use LLD linker for Clang
|
|
clang: CONFIG *= use_lld_linker
|
|
else: CONFIG *= use_gold_linker
|
|
|
|
# Or use mold linker
|
|
# QMAKE_LFLAGS *= -fuse-ld=mold
|
|
|
|
# Nothing to do, auto-configuration is enabled
|
|
!disable_autoconf: return()
|
|
|
|
# Includes
|
|
# vcpkg - range-v3 and tabulate
|
|
tiny_find_vcpkg()
|
|
# tiny_find_vcpkg($$quote(/home/xyz/Code/c/vcpkg/installed/x64-linux/include/), \
|
|
# x64-linux)
|
|
# tiny_add_system_includepath(\
|
|
# $$quote(/home/xyz/Code/c/vcpkg/installed/x64-linux/include/))
|
|
}
|