1 Star 0 Fork 0

科帕奇/LibreCAD

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
common.pri 2.36 KB
一键复制 编辑 原始数据 按行查看 历史
Dongxu Li 提交于 2024-04-07 15:48 . muParser building issue: win32
# include user-defined things in every qmake project
exists( custom.pro ):include( custom.pro )
exists( custom.pri ):include( custom.pri )
include( settings.pri )
# Store intermedia stuff somewhere else
isEmpty(GENERATED_DIR){
GENERATED_DIR = generated
}
# Store intermedia stuff somewhere else
OBJECTS_DIR = $${GENERATED_DIR}/obj
MOC_DIR = $${GENERATED_DIR}/moc
RCC_DIR = $${GENERATED_DIR}/rcc
UI_DIR = $${GENERATED_DIR}/ui
UI_HEADERS_DIR = $${GENERATED_DIR}/ui
UI_SOURCES_DIR = $${GENERATED_DIR}/ui
# Copy command
win32 {
COPY = copy /y
} else {
COPY = cp
}
# use c++ only
QMAKE_CC = g++
QMAKE_CFLAGS = -std=c++17
# Windows compiler settings
win32 {
QMAKE_CXXFLAGS += -U__STRICT_ANSI__
QMAKE_CFLAGS_THREAD -= -mthreads
QMAKE_CXXFLAGS_THREAD -= -mthreads
QMAKE_LFLAGS_THREAD -= -mthreads
#qt version check for mingw
win32-g++ {
contains(QT_VERSION, ^4\\.8\\.[0-4]) {
DEFINES += QT_NO_CONCURRENT=0
}
# Silence warning: typedef '...' locally defined but not used [-Wunused-local-typedefs]
# this was caused by boost headers and g++ 4.8.0 (Qt 5.1 / MinGW 4.8)
greaterThan( QT_MAJOR_VERSION, 4 ) {
QMAKE_CXXFLAGS += -Wno-unused-local-typedefs
}
}else{
!build_pass:verbose:message(Setting up support for MSVC.)
# define the M_PI etc macros for MSVC compilers.
DEFINES += _USE_MATH_DEFINES
}
# The .NET 2003 compiler (at least) is touchy about its own headers ...
win32-msvc2003 {
# Silence "unused formal parameter" warnings about unused `_Iosbase`
# in the header file `xloctime` (a Vc7 header after all!).
QMAKE_CXXFLAGS += /wd4100
}
}
unix|macx|win32-g++ {
# no such option for MSVC
QMAKE_CXXFLAGS_DEBUG += -g
QMAKE_CXXFLAGS += -g
}
# fix for GitHub Issue #880
# prevent QMake from using -isystem flag for system include path
# this breaks gcc 6 builds because of its #include_next feature
QMAKE_CFLAGS_ISYSTEM = ""
# svg support
QT += svg
greaterThan( QT_MAJOR_VERSION, 5) {
CONFIG += c++17
}else{
unix|macx|win32-g++ {
# no such option for MSVC
QMAKE_CXXFLAGS += -std=c++17
QMAKE_CXXFLAGS_DEBUG += -std=c++17
}
}
DEFINES += MUPARSER_STATIC
# RVT July 12 2015, I believe we need these here
#macx{
# QMAKE_CXXFLAGS_DEBUG += -mmacosx-version-min=10.8
# QMAKE_CXXFLAGS += -mmacosx-version-min=10.8
#}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/qdfalcon/LibreCAD.git
git@gitee.com:qdfalcon/LibreCAD.git
qdfalcon
LibreCAD
LibreCAD
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385