Show More
@@ -1,273 +1,273 b'' | |||||
1 | # The following variables can be passed in as parameters: |
|
1 | # The following variables can be passed in as parameters: | |
2 | # |
|
2 | # | |
3 | # VERSION |
|
3 | # VERSION | |
4 | # Version string of program being produced. |
|
4 | # Version string of program being produced. | |
5 | # |
|
5 | # | |
6 | # MSI_NAME |
|
6 | # MSI_NAME | |
7 | # Root name of MSI installer. |
|
7 | # Root name of MSI installer. | |
8 | # |
|
8 | # | |
9 | # EXTRA_MSI_FEATURES |
|
9 | # EXTRA_MSI_FEATURES | |
10 | # ; delimited string of extra features to advertise in the built MSA. |
|
10 | # ; delimited string of extra features to advertise in the built MSA. | |
11 | # |
|
11 | # | |
12 | # SIGNING_PFX_PATH |
|
12 | # SIGNING_PFX_PATH | |
13 | # Path to code signing certificate to use. |
|
13 | # Path to code signing certificate to use. | |
14 | # |
|
14 | # | |
15 | # SIGNING_PFX_PASSWORD |
|
15 | # SIGNING_PFX_PASSWORD | |
16 | # Password to code signing PFX file defined by SIGNING_PFX_PATH. |
|
16 | # Password to code signing PFX file defined by SIGNING_PFX_PATH. | |
17 | # |
|
17 | # | |
18 | # SIGNING_SUBJECT_NAME |
|
18 | # SIGNING_SUBJECT_NAME | |
19 | # String fragment in code signing certificate subject name used to find |
|
19 | # String fragment in code signing certificate subject name used to find | |
20 | # code signing certificate in Windows certificate store. |
|
20 | # code signing certificate in Windows certificate store. | |
21 | # |
|
21 | # | |
22 | # TIME_STAMP_SERVER_URL |
|
22 | # TIME_STAMP_SERVER_URL | |
23 | # URL of time-stamp token authority (RFC 3161) servers to stamp code signatures. |
|
23 | # URL of time-stamp token authority (RFC 3161) servers to stamp code signatures. | |
24 |
|
24 | |||
25 | ROOT = CWD + "/../.." |
|
25 | ROOT = CWD + "/../.." | |
26 |
|
26 | |||
27 | VERSION = VARS.get("VERSION", "5.8") |
|
27 | VERSION = VARS.get("VERSION", "5.8") | |
28 | MSI_NAME = VARS.get("MSI_NAME", "mercurial") |
|
28 | MSI_NAME = VARS.get("MSI_NAME", "mercurial") | |
29 | EXTRA_MSI_FEATURES = VARS.get("EXTRA_MSI_FEATURES") |
|
29 | EXTRA_MSI_FEATURES = VARS.get("EXTRA_MSI_FEATURES") | |
30 | SIGNING_PFX_PATH = VARS.get("SIGNING_PFX_PATH") |
|
30 | SIGNING_PFX_PATH = VARS.get("SIGNING_PFX_PATH") | |
31 | SIGNING_PFX_PASSWORD = VARS.get("SIGNING_PFX_PASSWORD", "") |
|
31 | SIGNING_PFX_PASSWORD = VARS.get("SIGNING_PFX_PASSWORD", "") | |
32 | SIGNING_SUBJECT_NAME = VARS.get("SIGNING_SUBJECT_NAME") |
|
32 | SIGNING_SUBJECT_NAME = VARS.get("SIGNING_SUBJECT_NAME") | |
33 | TIME_STAMP_SERVER_URL = VARS.get("TIME_STAMP_SERVER_URL", "http://timestamp.digicert.com") |
|
33 | TIME_STAMP_SERVER_URL = VARS.get("TIME_STAMP_SERVER_URL", "http://timestamp.digicert.com") | |
34 |
|
34 | |||
35 | IS_WINDOWS = "windows" in BUILD_TARGET_TRIPLE |
|
35 | IS_WINDOWS = "windows" in BUILD_TARGET_TRIPLE | |
36 |
|
36 | |||
37 | # Code to run in Python interpreter. |
|
37 | # Code to run in Python interpreter. | |
38 | RUN_CODE = "import hgdemandimport; hgdemandimport.enable(); from mercurial import dispatch; dispatch.run()" |
|
38 | RUN_CODE = "import hgdemandimport; hgdemandimport.enable(); from mercurial import dispatch; dispatch.run()" | |
39 |
|
39 | |||
40 | set_build_path(ROOT + "/build/pyoxidizer") |
|
40 | set_build_path(ROOT + "/build/pyoxidizer") | |
41 |
|
41 | |||
42 | def make_distribution(): |
|
42 | def make_distribution(): | |
43 |
return default_python_distribution(python_version = "3. |
|
43 | return default_python_distribution(python_version = "3.9") | |
44 |
|
44 | |||
45 | def resource_callback(policy, resource): |
|
45 | def resource_callback(policy, resource): | |
46 | if not IS_WINDOWS: |
|
46 | if not IS_WINDOWS: | |
47 | resource.add_location = "in-memory" |
|
47 | resource.add_location = "in-memory" | |
48 | return |
|
48 | return | |
49 |
|
49 | |||
50 | # We use a custom resource routing policy to influence where things are loaded |
|
50 | # We use a custom resource routing policy to influence where things are loaded | |
51 | # from. |
|
51 | # from. | |
52 | # |
|
52 | # | |
53 | # For Python modules and resources, we load from memory if they are in |
|
53 | # For Python modules and resources, we load from memory if they are in | |
54 | # the standard library and from the filesystem if not. This is because |
|
54 | # the standard library and from the filesystem if not. This is because | |
55 | # parts of Mercurial and some 3rd party packages aren't yet compatible |
|
55 | # parts of Mercurial and some 3rd party packages aren't yet compatible | |
56 | # with memory loading. |
|
56 | # with memory loading. | |
57 | # |
|
57 | # | |
58 | # For Python extension modules, we load from the filesystem because |
|
58 | # For Python extension modules, we load from the filesystem because | |
59 | # this yields greatest compatibility. |
|
59 | # this yields greatest compatibility. | |
60 | if type(resource) in ("PythonModuleSource", "PythonPackageResource", "PythonPackageDistributionResource"): |
|
60 | if type(resource) in ("PythonModuleSource", "PythonPackageResource", "PythonPackageDistributionResource"): | |
61 | if resource.is_stdlib: |
|
61 | if resource.is_stdlib: | |
62 | resource.add_location = "in-memory" |
|
62 | resource.add_location = "in-memory" | |
63 | else: |
|
63 | else: | |
64 | resource.add_location = "filesystem-relative:lib" |
|
64 | resource.add_location = "filesystem-relative:lib" | |
65 |
|
65 | |||
66 | elif type(resource) == "PythonExtensionModule": |
|
66 | elif type(resource) == "PythonExtensionModule": | |
67 | resource.add_location = "filesystem-relative:lib" |
|
67 | resource.add_location = "filesystem-relative:lib" | |
68 |
|
68 | |||
69 | def make_exe(dist): |
|
69 | def make_exe(dist): | |
70 | """Builds a Rust-wrapped Mercurial binary.""" |
|
70 | """Builds a Rust-wrapped Mercurial binary.""" | |
71 | packaging_policy = dist.make_python_packaging_policy() |
|
71 | packaging_policy = dist.make_python_packaging_policy() | |
72 |
|
72 | |||
73 | # Extension may depend on any Python functionality. Include all |
|
73 | # Extension may depend on any Python functionality. Include all | |
74 | # extensions. |
|
74 | # extensions. | |
75 | packaging_policy.extension_module_filter = "all" |
|
75 | packaging_policy.extension_module_filter = "all" | |
76 | packaging_policy.resources_location = "in-memory" |
|
76 | packaging_policy.resources_location = "in-memory" | |
77 | if IS_WINDOWS: |
|
77 | if IS_WINDOWS: | |
78 | packaging_policy.resources_location_fallback = "filesystem-relative:lib" |
|
78 | packaging_policy.resources_location_fallback = "filesystem-relative:lib" | |
79 | packaging_policy.register_resource_callback(resource_callback) |
|
79 | packaging_policy.register_resource_callback(resource_callback) | |
80 |
|
80 | |||
81 | config = dist.make_python_interpreter_config() |
|
81 | config = dist.make_python_interpreter_config() | |
82 | config.allocator_backend = "default" |
|
82 | config.allocator_backend = "default" | |
83 | config.run_command = RUN_CODE |
|
83 | config.run_command = RUN_CODE | |
84 |
|
84 | |||
85 | # We want to let the user load extensions from the file system |
|
85 | # We want to let the user load extensions from the file system | |
86 | config.filesystem_importer = True |
|
86 | config.filesystem_importer = True | |
87 |
|
87 | |||
88 | # We need this to make resourceutil happy, since it looks for sys.frozen. |
|
88 | # We need this to make resourceutil happy, since it looks for sys.frozen. | |
89 | config.sys_frozen = True |
|
89 | config.sys_frozen = True | |
90 | config.legacy_windows_stdio = True |
|
90 | config.legacy_windows_stdio = True | |
91 |
|
91 | |||
92 | exe = dist.to_python_executable( |
|
92 | exe = dist.to_python_executable( | |
93 | name = "hg", |
|
93 | name = "hg", | |
94 | packaging_policy = packaging_policy, |
|
94 | packaging_policy = packaging_policy, | |
95 | config = config, |
|
95 | config = config, | |
96 | ) |
|
96 | ) | |
97 |
|
97 | |||
98 | # Add Mercurial to resources. |
|
98 | # Add Mercurial to resources. | |
99 | exe.add_python_resources(exe.pip_install(["--verbose", ROOT])) |
|
99 | exe.add_python_resources(exe.pip_install(["--verbose", ROOT])) | |
100 |
|
100 | |||
101 | # On Windows, we install extra packages for convenience. |
|
101 | # On Windows, we install extra packages for convenience. | |
102 | if IS_WINDOWS: |
|
102 | if IS_WINDOWS: | |
103 | exe.add_python_resources( |
|
103 | exe.add_python_resources( | |
104 | exe.pip_install(["-r", ROOT + "/contrib/packaging/requirements-windows-py3.txt"]), |
|
104 | exe.pip_install(["-r", ROOT + "/contrib/packaging/requirements-windows-py3.txt"]), | |
105 | ) |
|
105 | ) | |
106 |
|
106 | |||
107 | return exe |
|
107 | return exe | |
108 |
|
108 | |||
109 | def make_manifest(dist, exe): |
|
109 | def make_manifest(dist, exe): | |
110 | m = FileManifest() |
|
110 | m = FileManifest() | |
111 | m.add_python_resource(".", exe) |
|
111 | m.add_python_resource(".", exe) | |
112 |
|
112 | |||
113 | return m |
|
113 | return m | |
114 |
|
114 | |||
115 |
|
115 | |||
116 | # This adjusts the InstallManifest produced from exe generation to provide |
|
116 | # This adjusts the InstallManifest produced from exe generation to provide | |
117 | # additional files found in a Windows install layout. |
|
117 | # additional files found in a Windows install layout. | |
118 | def make_windows_install_layout(manifest): |
|
118 | def make_windows_install_layout(manifest): | |
119 | # Copy various files to new install locations. This can go away once |
|
119 | # Copy various files to new install locations. This can go away once | |
120 | # we're using the importlib resource reader. |
|
120 | # we're using the importlib resource reader. | |
121 | RECURSIVE_COPIES = { |
|
121 | RECURSIVE_COPIES = { | |
122 | "lib/mercurial/locale/": "locale/", |
|
122 | "lib/mercurial/locale/": "locale/", | |
123 | "lib/mercurial/templates/": "templates/", |
|
123 | "lib/mercurial/templates/": "templates/", | |
124 | } |
|
124 | } | |
125 | for (search, replace) in RECURSIVE_COPIES.items(): |
|
125 | for (search, replace) in RECURSIVE_COPIES.items(): | |
126 | for path in manifest.paths(): |
|
126 | for path in manifest.paths(): | |
127 | if path.startswith(search): |
|
127 | if path.startswith(search): | |
128 | new_path = path.replace(search, replace) |
|
128 | new_path = path.replace(search, replace) | |
129 | print("copy %s to %s" % (path, new_path)) |
|
129 | print("copy %s to %s" % (path, new_path)) | |
130 | file = manifest.get_file(path) |
|
130 | file = manifest.get_file(path) | |
131 | manifest.add_file(file, path = new_path) |
|
131 | manifest.add_file(file, path = new_path) | |
132 |
|
132 | |||
133 | # Similar to above, but with filename pattern matching. |
|
133 | # Similar to above, but with filename pattern matching. | |
134 | # lib/mercurial/helptext/**/*.txt -> helptext/ |
|
134 | # lib/mercurial/helptext/**/*.txt -> helptext/ | |
135 | # lib/mercurial/defaultrc/*.rc -> defaultrc/ |
|
135 | # lib/mercurial/defaultrc/*.rc -> defaultrc/ | |
136 | for path in manifest.paths(): |
|
136 | for path in manifest.paths(): | |
137 | if path.startswith("lib/mercurial/helptext/") and path.endswith(".txt"): |
|
137 | if path.startswith("lib/mercurial/helptext/") and path.endswith(".txt"): | |
138 | new_path = path[len("lib/mercurial/"):] |
|
138 | new_path = path[len("lib/mercurial/"):] | |
139 | elif path.startswith("lib/mercurial/defaultrc/") and path.endswith(".rc"): |
|
139 | elif path.startswith("lib/mercurial/defaultrc/") and path.endswith(".rc"): | |
140 | new_path = path[len("lib/mercurial/"):] |
|
140 | new_path = path[len("lib/mercurial/"):] | |
141 | else: |
|
141 | else: | |
142 | continue |
|
142 | continue | |
143 |
|
143 | |||
144 | print("copying %s to %s" % (path, new_path)) |
|
144 | print("copying %s to %s" % (path, new_path)) | |
145 | manifest.add_file(manifest.get_file(path), path = new_path) |
|
145 | manifest.add_file(manifest.get_file(path), path = new_path) | |
146 |
|
146 | |||
147 | # We also install a handful of additional files. |
|
147 | # We also install a handful of additional files. | |
148 | EXTRA_CONTRIB_FILES = [ |
|
148 | EXTRA_CONTRIB_FILES = [ | |
149 | "bash_completion", |
|
149 | "bash_completion", | |
150 | "hgweb.fcgi", |
|
150 | "hgweb.fcgi", | |
151 | "hgweb.wsgi", |
|
151 | "hgweb.wsgi", | |
152 | "logo-droplets.svg", |
|
152 | "logo-droplets.svg", | |
153 | "mercurial.el", |
|
153 | "mercurial.el", | |
154 | "mq.el", |
|
154 | "mq.el", | |
155 | "tcsh_completion", |
|
155 | "tcsh_completion", | |
156 | "tcsh_completion_build.sh", |
|
156 | "tcsh_completion_build.sh", | |
157 | "xml.rnc", |
|
157 | "xml.rnc", | |
158 | "zsh_completion", |
|
158 | "zsh_completion", | |
159 | ] |
|
159 | ] | |
160 |
|
160 | |||
161 | for f in EXTRA_CONTRIB_FILES: |
|
161 | for f in EXTRA_CONTRIB_FILES: | |
162 | manifest.add_file(FileContent(path = ROOT + "/contrib/" + f), directory = "contrib") |
|
162 | manifest.add_file(FileContent(path = ROOT + "/contrib/" + f), directory = "contrib") | |
163 |
|
163 | |||
164 | # Individual files with full source to destination path mapping. |
|
164 | # Individual files with full source to destination path mapping. | |
165 | EXTRA_FILES = { |
|
165 | EXTRA_FILES = { | |
166 | "contrib/hgk": "contrib/hgk.tcl", |
|
166 | "contrib/hgk": "contrib/hgk.tcl", | |
167 | "contrib/win32/postinstall.txt": "ReleaseNotes.txt", |
|
167 | "contrib/win32/postinstall.txt": "ReleaseNotes.txt", | |
168 | "contrib/win32/ReadMe.html": "ReadMe.html", |
|
168 | "contrib/win32/ReadMe.html": "ReadMe.html", | |
169 | "doc/style.css": "doc/style.css", |
|
169 | "doc/style.css": "doc/style.css", | |
170 | "COPYING": "Copying.txt", |
|
170 | "COPYING": "Copying.txt", | |
171 | } |
|
171 | } | |
172 |
|
172 | |||
173 | for source, dest in EXTRA_FILES.items(): |
|
173 | for source, dest in EXTRA_FILES.items(): | |
174 | print("adding extra file %s" % dest) |
|
174 | print("adding extra file %s" % dest) | |
175 | manifest.add_file(FileContent(path = ROOT + "/" + source), path = dest) |
|
175 | manifest.add_file(FileContent(path = ROOT + "/" + source), path = dest) | |
176 |
|
176 | |||
177 | # And finally some wildcard matches. |
|
177 | # And finally some wildcard matches. | |
178 | manifest.add_manifest(glob( |
|
178 | manifest.add_manifest(glob( | |
179 | include = [ROOT + "/contrib/vim/*"], |
|
179 | include = [ROOT + "/contrib/vim/*"], | |
180 | strip_prefix = ROOT + "/" |
|
180 | strip_prefix = ROOT + "/" | |
181 | )) |
|
181 | )) | |
182 | manifest.add_manifest(glob( |
|
182 | manifest.add_manifest(glob( | |
183 | include = [ROOT + "/doc/*.html"], |
|
183 | include = [ROOT + "/doc/*.html"], | |
184 | strip_prefix = ROOT + "/" |
|
184 | strip_prefix = ROOT + "/" | |
185 | )) |
|
185 | )) | |
186 |
|
186 | |||
187 | # But we don't ship hg-ssh on Windows, so exclude its documentation. |
|
187 | # But we don't ship hg-ssh on Windows, so exclude its documentation. | |
188 | manifest.remove("doc/hg-ssh.8.html") |
|
188 | manifest.remove("doc/hg-ssh.8.html") | |
189 |
|
189 | |||
190 | return manifest |
|
190 | return manifest | |
191 |
|
191 | |||
192 |
|
192 | |||
193 | def make_msi(manifest): |
|
193 | def make_msi(manifest): | |
194 | manifest = make_windows_install_layout(manifest) |
|
194 | manifest = make_windows_install_layout(manifest) | |
195 |
|
195 | |||
196 | if "x86_64" in BUILD_TARGET_TRIPLE: |
|
196 | if "x86_64" in BUILD_TARGET_TRIPLE: | |
197 | platform = "x64" |
|
197 | platform = "x64" | |
198 | else: |
|
198 | else: | |
199 | platform = "x86" |
|
199 | platform = "x86" | |
200 |
|
200 | |||
201 | manifest.add_file( |
|
201 | manifest.add_file( | |
202 | FileContent(path = ROOT + "/contrib/packaging/wix/COPYING.rtf"), |
|
202 | FileContent(path = ROOT + "/contrib/packaging/wix/COPYING.rtf"), | |
203 | path = "COPYING.rtf", |
|
203 | path = "COPYING.rtf", | |
204 | ) |
|
204 | ) | |
205 | manifest.remove("Copying.txt") |
|
205 | manifest.remove("Copying.txt") | |
206 | manifest.add_file( |
|
206 | manifest.add_file( | |
207 | FileContent(path = ROOT + "/contrib/win32/mercurial.ini"), |
|
207 | FileContent(path = ROOT + "/contrib/win32/mercurial.ini"), | |
208 | path = "defaultrc/mercurial.rc", |
|
208 | path = "defaultrc/mercurial.rc", | |
209 | ) |
|
209 | ) | |
210 | manifest.add_file( |
|
210 | manifest.add_file( | |
211 | FileContent(filename = "editor.rc", content = "[ui]\neditor = notepad\n"), |
|
211 | FileContent(filename = "editor.rc", content = "[ui]\neditor = notepad\n"), | |
212 | path = "defaultrc/editor.rc", |
|
212 | path = "defaultrc/editor.rc", | |
213 | ) |
|
213 | ) | |
214 |
|
214 | |||
215 | wix = WiXInstaller("hg", "%s-%s.msi" % (MSI_NAME, VERSION)) |
|
215 | wix = WiXInstaller("hg", "%s-%s.msi" % (MSI_NAME, VERSION)) | |
216 |
|
216 | |||
217 | # Materialize files in the manifest to the install layout. |
|
217 | # Materialize files in the manifest to the install layout. | |
218 | wix.add_install_files(manifest) |
|
218 | wix.add_install_files(manifest) | |
219 |
|
219 | |||
220 | # From mercurial.wxs. |
|
220 | # From mercurial.wxs. | |
221 | wix.install_files_root_directory_id = "INSTALLDIR" |
|
221 | wix.install_files_root_directory_id = "INSTALLDIR" | |
222 |
|
222 | |||
223 | # Pull in our custom .wxs files. |
|
223 | # Pull in our custom .wxs files. | |
224 | defines = { |
|
224 | defines = { | |
225 | "PyOxidizer": "1", |
|
225 | "PyOxidizer": "1", | |
226 | "Platform": platform, |
|
226 | "Platform": platform, | |
227 | "Version": VERSION, |
|
227 | "Version": VERSION, | |
228 | "Comments": "Installs Mercurial version %s" % VERSION, |
|
228 | "Comments": "Installs Mercurial version %s" % VERSION, | |
229 | "PythonVersion": "3", |
|
229 | "PythonVersion": "3", | |
230 | "MercurialHasLib": "1", |
|
230 | "MercurialHasLib": "1", | |
231 | } |
|
231 | } | |
232 |
|
232 | |||
233 | if EXTRA_MSI_FEATURES: |
|
233 | if EXTRA_MSI_FEATURES: | |
234 | defines["MercurialExtraFeatures"] = EXTRA_MSI_FEATURES |
|
234 | defines["MercurialExtraFeatures"] = EXTRA_MSI_FEATURES | |
235 |
|
235 | |||
236 | wix.add_wxs_file( |
|
236 | wix.add_wxs_file( | |
237 | ROOT + "/contrib/packaging/wix/mercurial.wxs", |
|
237 | ROOT + "/contrib/packaging/wix/mercurial.wxs", | |
238 | preprocessor_parameters=defines, |
|
238 | preprocessor_parameters=defines, | |
239 | ) |
|
239 | ) | |
240 |
|
240 | |||
241 | # Our .wxs references to other files. Pull those into the build environment. |
|
241 | # Our .wxs references to other files. Pull those into the build environment. | |
242 | for f in ("defines.wxi", "guids.wxi", "COPYING.rtf"): |
|
242 | for f in ("defines.wxi", "guids.wxi", "COPYING.rtf"): | |
243 | wix.add_build_file(f, ROOT + "/contrib/packaging/wix/" + f) |
|
243 | wix.add_build_file(f, ROOT + "/contrib/packaging/wix/" + f) | |
244 |
|
244 | |||
245 | wix.add_build_file("mercurial.ico", ROOT + "/contrib/win32/mercurial.ico") |
|
245 | wix.add_build_file("mercurial.ico", ROOT + "/contrib/win32/mercurial.ico") | |
246 |
|
246 | |||
247 | return wix |
|
247 | return wix | |
248 |
|
248 | |||
249 |
|
249 | |||
250 | def register_code_signers(): |
|
250 | def register_code_signers(): | |
251 | if not IS_WINDOWS: |
|
251 | if not IS_WINDOWS: | |
252 | return |
|
252 | return | |
253 |
|
253 | |||
254 | if SIGNING_PFX_PATH: |
|
254 | if SIGNING_PFX_PATH: | |
255 | signer = code_signer_from_pfx_file(SIGNING_PFX_PATH, SIGNING_PFX_PASSWORD) |
|
255 | signer = code_signer_from_pfx_file(SIGNING_PFX_PATH, SIGNING_PFX_PASSWORD) | |
256 | elif SIGNING_SUBJECT_NAME: |
|
256 | elif SIGNING_SUBJECT_NAME: | |
257 | signer = code_signer_from_windows_store_subject(SIGNING_SUBJECT_NAME) |
|
257 | signer = code_signer_from_windows_store_subject(SIGNING_SUBJECT_NAME) | |
258 | else: |
|
258 | else: | |
259 | signer = None |
|
259 | signer = None | |
260 |
|
260 | |||
261 | if signer: |
|
261 | if signer: | |
262 | signer.set_time_stamp_server(TIME_STAMP_SERVER_URL) |
|
262 | signer.set_time_stamp_server(TIME_STAMP_SERVER_URL) | |
263 | signer.activate() |
|
263 | signer.activate() | |
264 |
|
264 | |||
265 |
|
265 | |||
266 | register_code_signers() |
|
266 | register_code_signers() | |
267 |
|
267 | |||
268 | register_target("distribution", make_distribution) |
|
268 | register_target("distribution", make_distribution) | |
269 | register_target("exe", make_exe, depends = ["distribution"]) |
|
269 | register_target("exe", make_exe, depends = ["distribution"]) | |
270 | register_target("app", make_manifest, depends = ["distribution", "exe"], default = True) |
|
270 | register_target("app", make_manifest, depends = ["distribution", "exe"], default = True) | |
271 | register_target("msi", make_msi, depends = ["app"]) |
|
271 | register_target("msi", make_msi, depends = ["app"]) | |
272 |
|
272 | |||
273 | resolve_targets() |
|
273 | resolve_targets() |
General Comments 0
You need to be logged in to leave comments.
Login now