diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-07-16 18:01:07 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-07-16 18:01:07 +0200 |
commit | 1bf9e4940feed9d47a4bc36acdd71a47704d82cf (patch) | |
tree | a63f4a717849e153b28ecea4e57d63374a296f23 /music_sampler.spec | |
parent | 052071a37a17ebcedc3e58cd4c353688727116f8 (diff) | |
download | MusicSampler-1bf9e4940feed9d47a4bc36acdd71a47704d82cf.tar.gz MusicSampler-1bf9e4940feed9d47a4bc36acdd71a47704d82cf.tar.zst MusicSampler-1bf9e4940feed9d47a4bc36acdd71a47704d82cf.zip |
Add dir in music_sampler.spec
Diffstat (limited to 'music_sampler.spec')
-rw-r--r-- | music_sampler.spec | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/music_sampler.spec b/music_sampler.spec index 7a885fd..8ce1db3 100644 --- a/music_sampler.spec +++ b/music_sampler.spec | |||
@@ -21,4 +21,10 @@ a = Analysis(['music_sampler.py'], | |||
21 | runtime_hooks=runtime_hooks(), | 21 | runtime_hooks=runtime_hooks(), |
22 | **excluded_and_hidden_modules) | 22 | **excluded_and_hidden_modules) |
23 | pyz = PYZ(a.pure, a.zipped_data) | 23 | pyz = PYZ(a.pure, a.zipped_data) |
24 | |||
25 | # Single file | ||
24 | exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas, name='music_sampler') | 26 | exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas, name='music_sampler') |
27 | |||
28 | # Directory | ||
29 | exe = EXE(pyz, a.scripts, exclude_binaries=True, name='music_sampler_dir', debug=False, strip=False, upx=True, console=True ) | ||
30 | coll = COLLECT(exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=True, name='music_sampler_dir') | ||