Adding beaengine.
This commit is contained in:
parent
4eafb6b070
commit
7f4f448369
|
@ -19,3 +19,6 @@
|
||||||
[submodule "third_party/asmjit"]
|
[submodule "third_party/asmjit"]
|
||||||
path = third_party/asmjit
|
path = third_party/asmjit
|
||||||
url = https://github.com/benvanik/asmjit.git
|
url = https://github.com/benvanik/asmjit.git
|
||||||
|
[submodule "third_party/beaengine"]
|
||||||
|
path = third_party/beaengine
|
||||||
|
url = https://github.com/benvanik/beaengine.git
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit ee1add269fa3487f9157fffb4c360051e3e5ed7f
|
|
@ -0,0 +1,32 @@
|
||||||
|
# Copyright 2013 Ben Vanik. All Rights Reserved.
|
||||||
|
{
|
||||||
|
'targets': [
|
||||||
|
{
|
||||||
|
'target_name': 'beaengine',
|
||||||
|
'type': '<(library)',
|
||||||
|
|
||||||
|
'direct_dependent_settings': {
|
||||||
|
'include_dirs': [
|
||||||
|
'beaengine/include/',
|
||||||
|
],
|
||||||
|
'defines': [
|
||||||
|
'BEA_ENGINE_STATIC=1',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
|
||||||
|
'sources': [
|
||||||
|
'beaengine/beaengineSources/BeaEngine.c',
|
||||||
|
],
|
||||||
|
|
||||||
|
'include_dirs': [
|
||||||
|
'beaengine/include/',
|
||||||
|
'beaengine/beaengineSources/',
|
||||||
|
],
|
||||||
|
|
||||||
|
'defines': [
|
||||||
|
'BEA_ENGINE_STATIC=1',
|
||||||
|
#'BEA_LIGHT_DISASSEMBLY=1',
|
||||||
|
],
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -3,6 +3,7 @@
|
||||||
'includes': [
|
'includes': [
|
||||||
'tools/tools.gypi',
|
'tools/tools.gypi',
|
||||||
'third_party/asmjit.gypi',
|
'third_party/asmjit.gypi',
|
||||||
|
'third_party/beaengine.gypi',
|
||||||
'third_party/gflags.gypi',
|
'third_party/gflags.gypi',
|
||||||
'third_party/sparsehash.gypi',
|
'third_party/sparsehash.gypi',
|
||||||
],
|
],
|
||||||
|
@ -15,11 +16,13 @@
|
||||||
|
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'asmjit',
|
'asmjit',
|
||||||
|
'beaengine',
|
||||||
'gflags',
|
'gflags',
|
||||||
'third_party/libjit/libjit.gyp:libjit',
|
'third_party/libjit/libjit.gyp:libjit',
|
||||||
],
|
],
|
||||||
'export_dependent_settings': [
|
'export_dependent_settings': [
|
||||||
'asmjit',
|
'asmjit',
|
||||||
|
'beaengine',
|
||||||
'gflags',
|
'gflags',
|
||||||
'third_party/libjit/libjit.gyp:libjit',
|
'third_party/libjit/libjit.gyp:libjit',
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue