Skip to content

Commit

Permalink
QMake: add optional env.pri file
Browse files Browse the repository at this point in the history
  • Loading branch information
HuguesDelorme committed Jul 18, 2023
1 parent b9ed666 commit 0d6474b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
build-*
*.user
*.user.*
installer/setupvars.iss
installer/Output
custom.pri
custom.pri
env.pri
7 changes: 6 additions & 1 deletion mayo.pro
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ OTHER_FILES += \
images/credits.txt \
scripts/bump-version.rb \

# Optional developer-specific QMake pri file for environment related settings
exists($$PWD/env.pri) {
include($$PWD/env.pri)
}

# OpenCascade
include(opencascade.pri)
!isEmpty(OCC_VERSION_STR) {
Expand Down Expand Up @@ -220,7 +225,7 @@ CONFIG(withtests) {
DEFINES += MAYO_WITH_TESTS
}

# Developer custom processing
# Optional developer-specific QMake pri file for custom processing
exists($$PWD/custom.pri) {
include($$PWD/custom.pri)
}

0 comments on commit 0d6474b

Please sign in to comment.