diff options
author | David Robillard <d@drobilla.net> | 2019-07-26 20:38:49 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-07-28 19:06:39 +0200 |
commit | b63194bf2536b156bbda688b3bf9917a5dcdc3f3 (patch) | |
tree | bda995f4e05f6d6cbdb35da0583cd977d5fd7ac5 /wscript | |
parent | 6a77f96642b201f614ce7eb67f3b6ec4e1e8c181 (diff) | |
download | pugl-b63194bf2536b156bbda688b3bf9917a5dcdc3f3.tar.gz pugl-b63194bf2536b156bbda688b3bf9917a5dcdc3f3.tar.bz2 pugl-b63194bf2536b156bbda688b3bf9917a5dcdc3f3.zip |
Windows: Factor out GL backend
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -97,7 +97,7 @@ def build(bld): framework = [] libs = [] if bld.env.TARGET_PLATFORM == 'win32': - lib_source = ['pugl/pugl_win.c'] + lib_source = ['pugl/pugl_win.c', 'pugl/pugl_win_gl.c'] libs = ['opengl32', 'gdi32', 'user32'] elif bld.env.TARGET_PLATFORM == 'darwin': lib_source = ['pugl/pugl_osx.m'] |