mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
This is a regression in functionality and performance, but a much better foundation for the future of the project (I think). It can run basic apps under an SSA interpreter but doesn't support some of the features required to do real 360 apps yet.
23 lines
324 B
Python
23 lines
324 B
Python
# Copyright 2013 Ben Vanik. All Rights Reserved.
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'alloy-sandbox',
|
|
'type': 'executable',
|
|
|
|
'dependencies': [
|
|
'alloy',
|
|
'xenia',
|
|
],
|
|
|
|
'include_dirs': [
|
|
'.',
|
|
],
|
|
|
|
'sources': [
|
|
'alloy-sandbox.cc',
|
|
],
|
|
},
|
|
],
|
|
}
|