summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-19 23:37:55 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-19 23:37:55 +0100
commit287b8f505251d09c37d3089220fbdf2f9586d9c8 (patch)
tree29b812980f8b627ab33a1370be390bf4b381de5e /cscript
parent94d13e93d7187c873e3a37e4c9b71ab9f62ae43a (diff)
Allow player-only builds.
Diffstat (limited to 'cscript')
-rw-r--r--cscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/cscript b/cscript
index 04c27781e..beb0815ff 100644
--- a/cscript
+++ b/cscript
@@ -363,6 +363,9 @@ def configure_options(target, options):
if not options['gui']:
opt += ' --disable-gui'
+ if options['player-only']:
+ opt += ' --player-only'
+
# Build Windows debug versions with static linking as I think gdb works better then
if target.debug and target.platform == 'windows':
opt += ' --static-dcpomatic'