Files
Xenia-Canary/src/poly/sources.gypi
2014-07-12 21:52:33 -07:00

41 lines
611 B
Python

# Copyright 2014 Ben Vanik. All Rights Reserved.
{
'sources': [
'assert.h',
'atomic.h',
'config.h',
'cxx_compat.h',
'math.cc',
'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': [
],
}