Adding GLEW.

This commit is contained in:
Ben Vanik
2014-12-20 13:55:05 -08:00
parent d839359b4a
commit 7faf9d6bd3
13 changed files with 71263 additions and 0 deletions

39
third_party/glew.gypi vendored Normal file
View File

@@ -0,0 +1,39 @@
# Copyright 2014 Ben Vanik. All Rights Reserved.
{
'targets': [
{
'target_name': 'glew',
'type': '<(library)',
'direct_dependent_settings': {
'include_dirs': [
'GL/',
],
'defines': [
'GLEW_STATIC=1',
],
},
'include_dirs': [
'GL/',
],
'defines': [
'GLEW_STATIC=1',
],
'sources': [
# Khronos sources:
'GL/glcorearb.h',
'GL/glext.h',
'GL/glxext.h',
'GL/wglext.h',
# GLEW sources:
'GL/glew.c',
'GL/glew.h',
'GL/glxew.h',
'GL/wglew.h',
],
}
]
}