daedalus/Source/SysGL/SysGL.gyp
2019-02-27 17:04:51 +11:00

35 lines
859 B
Python

{
'includes': [
'../common.gypi',
],
'targets': [
{
'target_name': 'SysGL',
'type': 'static_library',
'include_dirs': [
'../',
],
'dependencies': [
'../third_party/glew/glew.gyp:glew',
'../third_party/glfw/glfw.gyp:glfw',
'../third_party/libpng/libpng.gyp:libpng',
],
'sources': [
'Graphics/GraphicsContextGL.cpp',
'Graphics/NativeTextureGL.cpp',
'HLEGraphics/GraphicsPluginGL.cpp',
'HLEGraphics/RendererGL.cpp',
'Input/InputManagerGL.cpp',
'Interface/UI.cpp',
],
'copies': [
{
'destination': '<(PRODUCT_DIR)/',
'files': [
'../SysGL/HLEGraphics/n64.psh',
],
},
],
},
],
}