diff options
author | Vinson Lee <vlee@vmware.com> | 2010-01-28 01:19:53 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-01-28 01:19:53 -0800 |
commit | 8f81769148eab0042ffb7192a702350275648715 (patch) | |
tree | c2143990f7ba8e942bf011595d32e582f5e800ec | |
parent | 5dcc088bf16c8c4659e5e7c272ab226f0ed95d75 (diff) |
scons: Fix GLEW build on Mac OS X.
-rw-r--r-- | src/glew/SConscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glew/SConscript b/src/glew/SConscript index ce6e71e157..45375e083a 100644 --- a/src/glew/SConscript +++ b/src/glew/SConscript @@ -52,6 +52,9 @@ prog_env = env.Clone() prog_env.Prepend(LIBS = [glew]) +if prog_env['platform'] == 'darwin': + prog_env.Append(FRAMEWORKS = ['AGL']) + prog_env.Program( target = 'glewinfo', source = ['glewinfo.c'], |