mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 02:36:34 +01:00
It is now possible to modify build settings with environment variables.
Update to #7 Read BUILDING
This commit is contained in:
parent
443e438ddb
commit
1ded15ab24
3
BUILDING
3
BUILDING
@ -45,6 +45,9 @@
|
||||
#######################
|
||||
## Available Defines ##
|
||||
#######################
|
||||
You can set define directly in project file (QupZilla.pro)
|
||||
or set environment variable by
|
||||
$ export NAME="true"
|
||||
|
||||
General:
|
||||
UNRELEASED_BUILD QupZilla won't check profile version,
|
||||
|
@ -309,3 +309,16 @@ unix {
|
||||
|
||||
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)
|
||||
|
Loading…
Reference in New Issue
Block a user