Adding beaengine.
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -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
|
||||||
|
|||||||
1
third_party/beaengine
vendored
Submodule
1
third_party/beaengine
vendored
Submodule
Submodule third_party/beaengine added at ee1add269f
32
third_party/beaengine.gypi
vendored
Normal file
32
third_party/beaengine.gypi
vendored
Normal file
@@ -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',
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user