Files
Xenia-Canary/src/core/sources.gypi
Ben Vanik 49af0dbc85 Real modules and threads (mostly).
Need events/waiting to get proper launch thread behavior.
2013-01-30 22:44:32 -08:00

25 lines
388 B
Python

# Copyright 2013 Ben Vanik. All Rights Reserved.
{
'sources': [
'file.cc',
'memory.cc',
'pal.cc',
'ref.cc',
],
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
'mmap_posix.cc',
'mutex_posix.cc',
],
}],
['OS == "win"', {
'sources': [
'mmap_win.cc',
'mutex_win.cc',
],
}],
],
}