Merge branch 'merge_linux' of https://github.com/murlock/cboe

This commit is contained in:
2018-03-03 17:52:59 -05:00
127 changed files with 1629 additions and 27 deletions

View File

@@ -35,8 +35,12 @@ elif str(platform) == "win32":
boe.menus.win.cpp
"""))
game_sources.append(env.RES('#rsrc/menus/BladesOfExile.rc'))
elif str(platform) == "posix":
game_sources.extend(Split("""
boe.menus.linux.cpp
"""))
boe = env.Program("#build/bin/Blades of Exile", common_sources + party_classes + game_sources)
boe = env.Program("#build/bin/Blades of Exile", game_sources + party_classes + common_sources)
if str(platform) == "darwin":
boe_info = {
@@ -45,7 +49,7 @@ if str(platform) == "darwin":
'creator': 'blx!',
'icons': 'BoE boegraphics boeresources boesave boesounds',
}
elif str(platform) == "win32":
else:
boe_info = {}
env.Package(boe, install_dir, boe_info)