mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-24 16:48:18 -05:00
28 lines
580 B
Python
28 lines
580 B
Python
{
|
|
'includes': [
|
|
'target_defaults.gypi',
|
|
],
|
|
'targets': [
|
|
{
|
|
"include_dirs" : [
|
|
"<!(node -e \"require('nan')\")"
|
|
],
|
|
'target_name': 'glslOptimizer',
|
|
'dependencies': [
|
|
'src/glsl_optimizer_lib.gyp:*',
|
|
],
|
|
'sources': [
|
|
'src/node/binding.cpp',
|
|
'src/node/shader.h',
|
|
'src/node/shader.cpp',
|
|
'src/node/compiler.h',
|
|
'src/node/compiler.cpp'
|
|
],
|
|
'conditions': [
|
|
['OS=="win"', {
|
|
'msvs_disabled_warnings': [4506],
|
|
}],
|
|
],
|
|
}
|
|
]
|
|
}
|