diff options
| author | Joel de Vahl <joel@stalverk80.se> | 2008-10-21 16:16:16 +0000 |
|---|---|---|
| committer | Joel de Vahl <joel@stalverk80.se> | 2008-10-21 16:16:16 +0000 |
| commit | 21445b67bba1c514c2246947b6732d67b0ccd566 (patch) | |
| tree | e3c857860aa97f485f20963e048a0afee1a8e57a /scripts | |
| parent | 8edfa800280d49c51c56e044d75b0858c20ed0a2 (diff) | |
| download | zcatch-21445b67bba1c514c2246947b6732d67b0ccd566.tar.gz zcatch-21445b67bba1c514c2246947b6732d67b0ccd566.zip | |
use system installed sdl on osx
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/make_release.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/make_release.py b/scripts/make_release.py index 99e6d357..e5501a1b 100644 --- a/scripts/make_release.py +++ b/scripts/make_release.py @@ -92,7 +92,8 @@ if use_bundle: shutil.copy("other/icons/Teeworlds.icns", bundle_resource_dir) shutil.copy(name+exe_ext, bundle_bin_dir) shutil.copy(name+"_srv"+exe_ext, bundle_bin_dir) - #copydir("SDL.framework", bundle_framework_dir) + print(bundle_framework_dir) + os.system("cp -R /Library/Frameworks/SDL.framework " + bundle_framework_dir) file(os.path.join(bundle_content_dir, "Info.plist"), "w").write(""" <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |