aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-07-27 21:51:04 +0200
committerDavid Robillard <d@drobilla.net>2019-07-29 01:59:29 +0200
commitf89f6813e0b3653d829058ef4ca79363b69dc562 (patch)
tree894ea86ab0c76dfccbbe70638d0cd48ca8f70cd8 /wscript
parent626a49c269351ab47ba8ab1847eae0d13fd62934 (diff)
downloadpugl-f89f6813e0b3653d829058ef4ca79363b69dc562.tar.gz
pugl-f89f6813e0b3653d829058ef4ca79363b69dc562.tar.bz2
pugl-f89f6813e0b3653d829058ef4ca79363b69dc562.zip
Cleanup: Use fancy syntax for waf environments
Diffstat (limited to 'wscript')
-rw-r--r--wscript16
1 files changed, 8 insertions, 8 deletions
diff --git a/wscript b/wscript
index 7fd5a3a..e020578 100644
--- a/wscript
+++ b/wscript
@@ -72,15 +72,15 @@ def configure(conf):
# Shared library building is broken on win32 for some reason
conf.env.update({
'BUILD_SHARED': conf.env.TARGET_PLATFORM != 'win32',
- 'BUILD_STATIC': conf.env['BUILD_TESTS'] or Options.options.static})
+ 'BUILD_STATIC': conf.env.BUILD_TESTS or Options.options.static})
autowaf.set_lib_env(conf, 'pugl', PUGL_VERSION)
conf.write_config_header('pugl_config.h', remove=False)
autowaf.display_summary(
conf,
- {"Build static library": bool(conf.env['BUILD_STATIC']),
- "Build shared library": bool(conf.env['BUILD_SHARED']),
+ {"Build static library": bool(conf.env.BUILD_STATIC),
+ "Build shared library": bool(conf.env.BUILD_SHARED),
"OpenGL support": conf.is_defined('HAVE_GL'),
"Cairo support": conf.is_defined('HAVE_CAIRO'),
"Verbose console output": conf.is_defined('PUGL_VERBOSE')})
@@ -120,7 +120,7 @@ def build(bld):
libs += ['GL']
if bld.is_defined('HAVE_CAIRO'):
lib_source += ['pugl/detail/x11_cairo.c']
- if bld.env['MSVC_COMPILER']:
+ if bld.env.MSVC_COMPILER:
libflags = []
else:
libs += ['m']
@@ -142,20 +142,20 @@ def build(bld):
})
# Shared Library
- if bld.env['BUILD_SHARED']:
+ if bld.env.BUILD_SHARED:
bld(features = 'c cshlib',
name = 'libpugl',
cflags = libflags + ['-DPUGL_SHARED', '-DPUGL_INTERNAL'],
**lib_common)
# Static library
- if bld.env['BUILD_STATIC']:
+ if bld.env.BUILD_STATIC:
bld(features = 'c cstlib',
name = 'libpugl_static',
cflags = ['-DPUGL_INTERNAL'],
**lib_common)
- if bld.env['BUILD_TESTS']:
+ if bld.env.BUILD_TESTS:
test_libs = libs
test_cflags = ['']
@@ -187,7 +187,7 @@ def build(bld):
cflags = test_cflags,
**common)
- if bld.env['DOCS']:
+ if bld.env.DOCS:
bld(features = 'subst',
source = 'Doxyfile.in',
target = 'Doxyfile',