xenia/src/poly/sources.gypi

40 lines
596 B
Plaintext
Raw Normal View History

2014-07-10 07:05:41 +02:00
# Copyright 2014 Ben Vanik. All Rights Reserved.
{
'sources': [
'assert.h',
'atomic.h',
'config.h',
'cxx_compat.h',
'math.h',
'platform.h',
2014-07-10 07:05:41 +02:00
'poly-private.h',
'poly.cc',
'poly.h',
2014-07-11 08:51:28 +02:00
'threading.h',
2014-07-10 07:05:41 +02:00
],
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
],
}],
['OS == "linux"', {
'sources': [
],
}],
['OS == "mac"', {
'sources': [
2014-07-11 08:51:28 +02:00
'threading_mac.cc',
2014-07-10 07:05:41 +02:00
],
}],
['OS == "win"', {
'sources': [
2014-07-11 08:51:28 +02:00
'threading_win.cc',
2014-07-10 07:05:41 +02:00
],
}],
],
'includes': [
],
}