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

@@ -24,7 +24,12 @@ elif str(platform) == "win32":
"""))
scened_sources.extend(env.RES('#rsrc/menus/ScenEditor.rc'))
scened = env.Program("#build/bin/BoE Scenario Editor", common_sources + scened_sources)
elif str(platform) == "posix":
scened_sources.extend(Split("""
scen.menus.linux.cpp
"""))
scened = env.Program("#build/bin/BoE Scenario Editor", scened_sources + common_sources)
if str(platform) == "darwin":
scened_info = {
@@ -33,7 +38,7 @@ if str(platform) == "darwin":
'creator': 'BlEd',
'icons': 'boescenario BoEScenEd',
}
elif str(platform) == "win32":
else:
scened_info = {}
env.Package(scened, install_dir, scened_info)