mirror of
https://github.com/onionshare/onionshare.git
synced 2025-04-29 14:19:30 -04:00
Ensure snowflake, obfs4 and tor licenses are included in binary packages
This commit is contained in:
parent
fc4aacae7d
commit
03b02c921b
1 changed files with 6 additions and 1 deletions
|
@ -35,7 +35,12 @@ with open(os.path.join("..", "cli", "onionshare_cli", "resources", "version.txt"
|
||||||
version = version[0:-5]
|
version = version[0:-5]
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
include_files = [(os.path.join("..", "LICENSE.txt"), "LICENSE.txt")]
|
include_files = [
|
||||||
|
(os.path.join("..", "LICENSE.txt"), "LICENSE.txt"),
|
||||||
|
(os.path.join("..", "licenses", "license-obfs4.txt"), "license-obfs4.txt"),
|
||||||
|
(os.path.join("..", "licenses", "license-snowflake.txt"), "license-snowflake.txt"),
|
||||||
|
(os.path.join("..", "licenses", "license-tor.txt"), "license-tor.txt")
|
||||||
|
]
|
||||||
|
|
||||||
if platform.system() == "Windows":
|
if platform.system() == "Windows":
|
||||||
include_msvcr = True
|
include_msvcr = True
|
||||||
|
|
Loading…
Add table
Reference in a new issue