1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

It is now possible to modify build settings with environment variables.

Update to #7
Read BUILDING
This commit is contained in:
nowrep 2011-10-13 20:06:27 +02:00
parent 443e438ddb
commit 1ded15ab24
2 changed files with 16 additions and 0 deletions

View File

@ -45,6 +45,9 @@
####################### #######################
## Available Defines ## ## Available Defines ##
####################### #######################
You can set define directly in project file (QupZilla.pro)
or set environment variable by
$ export NAME="true"
General: General:
UNRELEASED_BUILD QupZilla won't check profile version, UNRELEASED_BUILD QupZilla won't check profile version,

View File

@ -309,3 +309,16 @@ unix {
INSTALLS += target target1 target2 target3 INSTALLS += target target1 target2 target3
} }
d_unreleased_build = $$(UNRELEASED_BUILD)
d_no_system_datapath = $$(NO_SYSTEM_DATAPATH)
d_use_webgl = $$(USE_WEBGL)
d_w7api = $$(W7API)
equals(d_unreleased_build, "true"): DEFINES += UNRELEASED_BUILD
equals(d_no_system_datapath, "true"): DEFINES += NO_SYSTEM_DATAPATH
equals(d_use_webgl, "true"): DEFINES += USE_WEBGL
win32 { equals(d_w7api, "true"): DEFINES += W7API }
message(Using following defines)
message($$DEFINES)