mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
40 lines
596 B
Python
40 lines
596 B
Python
# Copyright 2014 Ben Vanik. All Rights Reserved.
|
|
{
|
|
'sources': [
|
|
'assert.h',
|
|
'atomic.h',
|
|
'config.h',
|
|
'cxx_compat.h',
|
|
'math.h',
|
|
'platform.h',
|
|
'poly-private.h',
|
|
'poly.cc',
|
|
'poly.h',
|
|
'threading.h',
|
|
],
|
|
|
|
'conditions': [
|
|
['OS == "mac" or OS == "linux"', {
|
|
'sources': [
|
|
],
|
|
}],
|
|
['OS == "linux"', {
|
|
'sources': [
|
|
],
|
|
}],
|
|
['OS == "mac"', {
|
|
'sources': [
|
|
'threading_mac.cc',
|
|
],
|
|
}],
|
|
['OS == "win"', {
|
|
'sources': [
|
|
'threading_win.cc',
|
|
],
|
|
}],
|
|
],
|
|
|
|
'includes': [
|
|
],
|
|
}
|