diff options
| author | DrChat <arkolbed@gmail.com> | 2017-12-14 19:20:02 -0600 |
|---|---|---|
| committer | DrChat <arkolbed@gmail.com> | 2017-12-14 19:20:02 -0600 |
| commit | 02e37be4e559428b3e7d21853eb4c7255143c2c8 (patch) | |
| tree | d2012474f58f2f7ace57e27acc95afc26e6d337c /tools/build/scripts/platform_files.lua | |
| parent | d896c1f3f0cc668581c3049e5c453f5f12877251 (diff) | |
| parent | 0406f19f4da8114340dd222b0c6dba10215dd0f6 (diff) | |
Merge branch 'linux' of git://github.com/dougvj/xenia into linux
# Conflicts:
# .travis.yml
Diffstat (limited to 'tools/build/scripts/platform_files.lua')
| -rw-r--r-- | tools/build/scripts/platform_files.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/build/scripts/platform_files.lua b/tools/build/scripts/platform_files.lua index b6d2e9ecc..4c887115e 100644 --- a/tools/build/scripts/platform_files.lua +++ b/tools/build/scripts/platform_files.lua @@ -13,6 +13,8 @@ local function match_platform_files(base_path, base_match) removefiles({base_path.."/".."**_test.cc"}) removefiles({base_path.."/".."**_posix.h", base_path.."/".."**_posix.cc"}) removefiles({base_path.."/".."**_linux.h", base_path.."/".."**_linux.cc"}) + removefiles({base_path.."/".."**_x11.h", base_path.."/".."**_x11.cc"}) + removefiles({base_path.."/".."**_gtk.h", base_path.."/".."**_gtk.cc"}) removefiles({base_path.."/".."**_mac.h", base_path.."/".."**_mac.cc"}) removefiles({base_path.."/".."**_win.h", base_path.."/".."**_win.cc"}) filter("platforms:Windows") @@ -26,6 +28,10 @@ local function match_platform_files(base_path, base_match) base_path.."/"..base_match.."_posix.cc", base_path.."/"..base_match.."_linux.h", base_path.."/"..base_match.."_linux.cc", + base_path.."/"..base_match.."_x11.h", + base_path.."/"..base_match.."_x11.cc", + base_path.."/"..base_match.."_gtk.h", + base_path.."/"..base_match.."_gtk.cc", }) filter({}) end |
