Windows build fix.
[dcpomatic.git] / platform / windows / wscript
1 from __future__ import print_function
2 import os
3
4 def write_installer(bits, windows_version, dcpomatic_version, debug, variant, disk):
5     try:
6         os.makedirs('build/platform/windows')
7     except:
8         pass
9
10     filename = 'build/platform/windows/installer.'
11     if windows_version is not None:
12         filename += 'xp.'
13     filename += '%d.nsi' % bits
14
15     f = open(filename, 'w')
16     print('!include "MUI2.nsh"', file=f)
17     if bits == 64:
18         print('!include "x64.nsh"', file=f)
19
20     if debug:
21         print('Name "DCP-o-matic debug"', file=f)
22     else:
23         print('Name "DCP-o-matic"', file=f)
24
25     print('RequestExecutionLevel admin', file=f)
26
27     outfile = 'DCP-o-matic '
28     if debug:
29         outfile += 'Debug '
30     outfile += '%s %d-bit ' % (dcpomatic_version, bits)
31     if windows_version is 'xp':
32         outfile += 'XP '
33     outfile += 'Installer.exe'
34
35     print('outFile "%s"' % outfile, file=f)
36
37     print("""
38 !define MUI_ICON "%graphics%/windows/dcpomatic2.ico"
39 !define MUI_UNICON "%graphics%/windows/dcpomatic2.ico"
40 !define MUI_SPECIALBITMAP "%graphics%/windows/dcpomatic.bmp"
41 !include "Sections.nsh"
42     """, file=f)
43
44     if bits == 64:
45         program_files = "$PROGRAMFILES64"
46     else:
47         program_files = "$PROGRAMFILES"
48
49     if debug:
50         print('InstallDir "%s\\DCP-o-matic 2 debug"' % program_files, file=f)
51     else:
52         print('InstallDir "%s\\DCP-o-matic 2"' % program_files, file=f)
53
54     print("""
55 !insertmacro MUI_PAGE_WELCOME
56 !insertmacro MUI_PAGE_LICENSE "../../../COPYING"
57 !insertmacro MUI_PAGE_DIRECTORY
58 !insertmacro MUI_PAGE_COMPONENTS
59
60 Section "Common files (required)" SEC_COMMON
61 SectionIn RO
62     """, file=f)
63
64     if bits == 64:
65         print("""
66 ; disable registry redirection (enable access to 64-bit portion of registry)
67 SetRegView 64
68         """, file=f)
69
70     print("""
71 SetOutPath "$INSTDIR\\bin"
72 WriteUninstaller "$INSTDIR\\Uninstall.exe"
73
74 File "%static_deps%/bin/libintl-8.dll"
75 File "%static_deps%/bin/libboost_chrono-mt.dll"
76 File "%static_deps%/bin/libboost_filesystem-mt.dll"
77 File "%static_deps%/bin/libboost_system-mt.dll"
78 File "%static_deps%/bin/libboost_thread-mt.dll"
79 File "%static_deps%/bin/libboost_date_time-mt.dll"
80 File "%static_deps%/bin/libboost_locale-mt.dll"
81 File "%static_deps%/bin/libboost_regex-mt.dll"
82 """, file=f)
83
84     if bits == 32:
85         print('File "%static_deps%/bin/libgcc_s_sjlj-1.dll"', file=f)
86     else:
87         print('File "%static_deps%/bin/libgcc_s_seh-1.dll"', file=f)
88
89     print("""
90 File "%static_deps%/bin/libgio-2.0-0.dll"
91 File "%static_deps%/bin/libglib-2.0-0.dll"
92 File "%static_deps%/bin/libgobject-2.0-0.dll"
93 File "%static_deps%/bin/libiconv-2.dll"
94 File "%static_deps%/bin/libjpeg-9.dll"
95 File "%static_deps%/bin/libpng16-16.dll"
96 File "%static_deps%/bin/libsigc-2.0-0.dll"
97 File "%static_deps%/bin/libsndfile-1.dll"
98 File "%static_deps%/bin/libssh.dll"
99 File "%static_deps%/bin/libstdc++-6.dll"
100 File "%static_deps%/bin/zlib1.dll"
101 File "%static_deps%/bin/libjpeg-9.dll"
102 File "%static_deps%/bin/wxbase30u_gcc_custom.dll"
103 File "%static_deps%/bin/wxmsw30u_core_gcc_custom.dll"
104 File "%static_deps%/bin/wxmsw30u_adv_gcc_custom.dll"
105 File "%static_deps%/bin/wxmsw30u_richtext_gcc_custom.dll"
106 File "%static_deps%/bin/wxmsw30u_html_gcc_custom.dll"
107 File "%static_deps%/bin/wxmsw30u_gl_gcc_custom.dll"
108 File "%static_deps%/bin/wxbase30u_xml_gcc_custom.dll"
109 File "%static_deps%/bin/libcairo-2.dll"
110 File "%static_deps%/bin/libfreetype-6.dll"
111 File "%static_deps%/bin/libgthread-2.0-0.dll"
112 File "%static_deps%/bin/libpango-1.0-0.dll"
113 File "%static_deps%/bin/libgmodule-2.0-0.dll"
114 File "%static_deps%/bin/libpangocairo-1.0-0.dll"
115 File "%static_deps%/bin/libpangowin32-1.0-0.dll"
116 File "%static_deps%/bin/libtiff-5.dll"
117 File "%static_deps%/bin/libglibmm-2.4-1.dll"
118 File "%static_deps%/bin/libxml++-2.6-2.dll"
119 File "%static_deps%/bin/libxml2-2.dll"
120 File "%static_deps%/bin/libpixman-1-0.dll"
121 File "%static_deps%/bin/libfontconfig-1.dll"
122 File "%static_deps%/bin/libexpat-1.dll"
123 File "%static_deps%/bin/libbz2.dll"
124 File "%static_deps%/bin/libxmlsec1.dll"
125 File "%static_deps%/bin/libxmlsec1-openssl.dll"
126 File "%static_deps%/bin/libexslt-0.dll"
127 File "%static_deps%/bin/libxslt-1.dll"
128 File "%static_deps%/bin/libffi-6.dll"
129 File "%static_deps%/bin/openssl.exe"
130 File "%static_deps%/bin/libcurl-4.dll"
131 File "%static_deps%/bin/libzip.dll"
132 File "%static_deps%/bin/libcairomm-1.0-1.dll"
133 File "%static_deps%/bin/libpangomm-1.4-1.dll"
134 File "%static_deps%/bin/libsamplerate-0.dll"
135 File "%static_deps%/bin/libnettle-7.dll"
136 File "%static_deps%/bin/icuuc65.dll"
137 File "%static_deps%/bin/icudt65.dll"
138 File "%static_deps%/bin/icuin65.dll"
139 File "%static_deps%/bin/liblzma-5.dll"
140 File "%static_deps%/bin/libpcre-1.dll"
141 File "%static_deps%/bin/libharfbuzz-0.dll"
142 File "%static_deps%/bin/libjasper.dll"
143 File "%static_deps%/bin/liblcms2-2.dll"
144 File "%static_deps%/bin/libwinpthread-1.dll"
145 File "%static_deps%/bin/libgnutls-30.dll"
146 File "%static_deps%/bin/libgmp-10.dll"
147 File "%static_deps%/bin/libhogweed-5.dll"
148 File "%static_deps%/bin/libidn2-0.dll"
149 File "%static_deps%/bin/libunistring-2.dll"
150 File "%static_deps%/bin/libssh2-1.dll"
151 File "%static_deps%/bin/libgcrypt-20.dll"
152 File "%static_deps%/bin/libgpg-error-0.dll"
153 File "%static_deps%/bin/libpangoft2-1.0-0.dll"
154 File "%static_deps%/bin/libx264-155.dll"
155 File "%static_deps%/bin/libwebp-7.dll"
156     """, file=f)
157
158     if bits == 32:
159         print('File "%static_deps%/bin/libcrypto-1_1.dll"', file=f)
160     else:
161         print('File "%static_deps%/bin/libcrypto-1_1-x64.dll"', file=f)
162
163     print("""
164 File "%static_deps%/bin/libltdl-7.dll"
165 File "%static_deps%/bin/libdl.dll"
166 File "%cdist_deps%/bin/asdcp-carl.dll"
167 File "%cdist_deps%/bin/kumu-carl.dll"
168     """, file=f)
169
170     if disk:
171         print("""
172 File "%static_deps%/bin/libnanomsg.dll"
173 File "%cdist_deps%/lib/libblockdev.dll"
174 File "%cdist_deps%/lib/liblwext4.dll"
175         """, file=f)
176
177     if windows_version == 'xp':
178         print("""
179 File "%cdist_deps%/bin/avcodec-57.dll"
180 File "%cdist_deps%/bin/avfilter-6.dll"
181 File "%cdist_deps%/bin/avformat-57.dll"
182 File "%cdist_deps%/bin/avutil-55.dll"
183 File "%cdist_deps%/bin/avdevice-57.dll"
184 File "%cdist_deps%/bin/postproc-54.dll"
185 File "%cdist_deps%/bin/swresample-2.dll"
186 File "%cdist_deps%/bin/swscale-4.dll"
187         """, file=f)
188     else:
189         print("""
190 File "%cdist_deps%/bin/avcodec-58.dll"
191 File "%cdist_deps%/bin/avfilter-7.dll"
192 File "%cdist_deps%/bin/avformat-58.dll"
193 File "%cdist_deps%/bin/avutil-56.dll"
194 File "%cdist_deps%/bin/avdevice-58.dll"
195 File "%cdist_deps%/bin/postproc-55.dll"
196 File "%cdist_deps%/bin/swresample-3.dll"
197 File "%cdist_deps%/bin/swscale-5.dll"
198         """, file=f)
199
200     print("""
201 File "%cdist_deps%/bin/dcp-1.0.dll"
202 File "%cdist_deps%/bin/cxml-0.dll"
203 File "%cdist_deps%/bin/sub-1.0.dll"
204 File "%cdist_deps%/bin/ffprobe.exe"
205 File "%cdist_deps%/src/openssl/apps/openssl.exe"
206     """, file=f)
207
208     if windows_version == 'xp':
209         print('File "%cdist_deps%/bin/libopenjpeg-1.dll"', file=f)
210     else:
211         print('File "%cdist_deps%/bin/libopenjp2.dll"', file=f)
212
213     if debug:
214         print('File "%resources%/gdb_script"', file=f)
215         print('File "%resources%/dcpomatic2_debug.bat"', file=f)
216         print('File "%resources%/dcpomatic2_batch_debug.bat"', file=f)
217         print('File "%resources%/dcpomatic2_kdm_debug.bat"', file=f)
218         print('File "%resources%/dcpomatic2_player_debug.bat"', file=f)
219         if disk:
220             print('File "%resources%/dcpomatic2_disk_debug.bat"', file=f)
221         print('File "%mingw%/bin/gdb.exe"', file=f)
222     else:
223         print('File "%binaries%/src/wx/dcpomatic2-wx.dll"', file=f)
224         print('File "%binaries%/src/lib/dcpomatic2.dll"', file=f)
225
226     print("""
227 SetOutPath "$INSTDIR\\bin"
228
229 SetOutPath "$INSTDIR\\locale\\fr\\LC_MESSAGES"
230 File "%binaries%/src/lib/mo/fr_FR/libdcpomatic2.mo"
231 File "%binaries%/src/wx/mo/fr_FR/libdcpomatic2-wx.mo"
232 File "%binaries%/src/tools/mo/fr_FR/dcpomatic2.mo"
233 File "%static_deps%/share/locale/fr/LC_MESSAGES/wxstd.mo"
234 SetOutPath "$INSTDIR\\locale\\it\\LC_MESSAGES"
235 File "%binaries%/src/lib/mo/it_IT/libdcpomatic2.mo"
236 File "%binaries%/src/wx/mo/it_IT/libdcpomatic2-wx.mo"
237 File "%binaries%/src/tools/mo/it_IT/dcpomatic2.mo"
238 File "%static_deps%/share/locale/it/LC_MESSAGES/wxstd.mo"
239 SetOutPath "$INSTDIR\\locale\\es\\LC_MESSAGES"
240 File "%binaries%/src/lib/mo/es_ES/libdcpomatic2.mo"
241 File "%binaries%/src/wx/mo/es_ES/libdcpomatic2-wx.mo"
242 File "%binaries%/src/tools/mo/es_ES/dcpomatic2.mo"
243 File "%static_deps%/share/locale/es/LC_MESSAGES/wxstd.mo"
244 SetOutPath "$INSTDIR\\locale\\sv\\LC_MESSAGES"
245 File "%binaries%/src/lib/mo/sv_SE/libdcpomatic2.mo"
246 File "%binaries%/src/wx/mo/sv_SE/libdcpomatic2-wx.mo"
247 File "%binaries%/src/tools/mo/sv_SE/dcpomatic2.mo"
248 File "%static_deps%/share/locale/sv/LC_MESSAGES/wxstd.mo"
249 SetOutPath "$INSTDIR\\locale\\de\\LC_MESSAGES"
250 File "%binaries%/src/lib/mo/de_DE/libdcpomatic2.mo"
251 File "%binaries%/src/wx/mo/de_DE/libdcpomatic2-wx.mo"
252 File "%binaries%/src/tools/mo/de_DE/dcpomatic2.mo"
253 File "%static_deps%/share/locale/de/LC_MESSAGES/wxstd.mo"
254 SetOutPath "$INSTDIR\\locale\\nl\\LC_MESSAGES"
255 File "%binaries%/src/lib/mo/nl_NL/libdcpomatic2.mo"
256 File "%binaries%/src/wx/mo/nl_NL/libdcpomatic2-wx.mo"
257 File "%binaries%/src/tools/mo/nl_NL/dcpomatic2.mo"
258 File "%static_deps%/share/locale/nl/LC_MESSAGES/wxstd.mo"
259 SetOutPath "$INSTDIR\\locale\\ru\\LC_MESSAGES"
260 File "%binaries%/src/lib/mo/ru_RU/libdcpomatic2.mo"
261 File "%binaries%/src/wx/mo/ru_RU/libdcpomatic2-wx.mo"
262 File "%binaries%/src/tools/mo/ru_RU/dcpomatic2.mo"
263 File "%static_deps%/share/locale/ru/LC_MESSAGES/wxstd.mo"
264 SetOutPath "$INSTDIR\\locale\\pl\\LC_MESSAGES"
265 File "%binaries%/src/lib/mo/pl_PL/libdcpomatic2.mo"
266 File "%binaries%/src/wx/mo/pl_PL/libdcpomatic2-wx.mo"
267 File "%binaries%/src/tools/mo/pl_PL/dcpomatic2.mo"
268 File "%static_deps%/share/locale/pl/LC_MESSAGES/wxstd.mo"
269 SetOutPath "$INSTDIR\\locale\\da\\LC_MESSAGES"
270 File "%binaries%/src/lib/mo/da_DK/libdcpomatic2.mo"
271 File "%binaries%/src/wx/mo/da_DK/libdcpomatic2-wx.mo"
272 File "%binaries%/src/tools/mo/da_DK/dcpomatic2.mo"
273 File "%static_deps%/share/locale/da/LC_MESSAGES/wxstd.mo"
274 SetOutPath "$INSTDIR\\locale\\pt_PT\\LC_MESSAGES"
275 File "%binaries%/src/lib/mo/pt_PT/libdcpomatic2.mo"
276 File "%binaries%/src/wx/mo/pt_PT/libdcpomatic2-wx.mo"
277 File "%binaries%/src/tools/mo/pt_PT/dcpomatic2.mo"
278 SetOutPath "$INSTDIR\\locale\\pt_BR\\LC_MESSAGES"
279 File "%binaries%/src/lib/mo/pt_BR/libdcpomatic2.mo"
280 File "%binaries%/src/wx/mo/pt_BR/libdcpomatic2-wx.mo"
281 File "%binaries%/src/tools/mo/pt_BR/dcpomatic2.mo"
282 SetOutPath "$INSTDIR\\locale\\sk\\LC_MESSAGES"
283 File "%binaries%/src/lib/mo/sk_SK/libdcpomatic2.mo"
284 File "%binaries%/src/wx/mo/sk_SK/libdcpomatic2-wx.mo"
285 File "%binaries%/src/tools/mo/sk_SK/dcpomatic2.mo"
286 SetOutPath "$INSTDIR\\locale\\cs\\LC_MESSAGES"
287 File "%binaries%/src/lib/mo/cs_CZ/libdcpomatic2.mo"
288 File "%binaries%/src/wx/mo/cs_CZ/libdcpomatic2-wx.mo"
289 File "%binaries%/src/tools/mo/cs_CZ/dcpomatic2.mo"
290 File "%static_deps%/share/locale/cs/LC_MESSAGES/wxstd.mo"
291 SetOutPath "$INSTDIR\\locale\\uk\\LC_MESSAGES"
292 File "%binaries%/src/lib/mo/uk_UA/libdcpomatic2.mo"
293 File "%binaries%/src/wx/mo/uk_UA/libdcpomatic2-wx.mo"
294 File "%binaries%/src/tools/mo/uk_UA/dcpomatic2.mo"
295 SetOutPath "$INSTDIR\\locale\\zh_cn\\LC_MESSAGES"
296 File "%binaries%/src/lib/mo/zh_CN/libdcpomatic2.mo"
297 File "%binaries%/src/wx/mo/zh_CN/libdcpomatic2-wx.mo"
298 File "%binaries%/src/tools/mo/zh_CN/dcpomatic2.mo"
299 SetOutPath "$INSTDIR\\locale\\tr_tr\\LC_MESSAGES"
300 File "%binaries%/src/lib/mo/tr_TR/libdcpomatic2.mo"
301 File "%binaries%/src/wx/mo/tr_TR/libdcpomatic2-wx.mo"
302 File "%binaries%/src/tools/mo/tr_TR/dcpomatic2.mo"
303
304 SetOutPath "$INSTDIR"
305 File "%resources%/../../fonts/LiberationSans-Regular.ttf"
306 File "%resources%/../../fonts/LiberationSans-Italic.ttf"
307 File "%resources%/../../fonts/LiberationSans-Bold.ttf"
308 File /oname=fonts.conf "%resources%/../../fonts/fonts.conf.windows"
309 File "%graphics%/splash.png"
310 File "%graphics%/zoom.png"
311 File "%graphics%/zoom_all.png"
312 File "%graphics%/select.png"
313 File "%graphics%/snap.png"
314 File "%graphics%/sequence.png"
315 File "%graphics%/me.jpg"
316 File "%graphics%/tick.png"
317 File "%graphics%/no_tick.png"
318 SetOutPath "$INSTDIR\\xsd"
319 File "%cdist_deps%/share/libdcp/xsd/SMPTE-429-7-2006-CPL.xsd"
320 File "%cdist_deps%/share/libdcp/xsd/SMPTE-429-8-2006-PKL.xsd"
321 File "%cdist_deps%/share/libdcp/xsd/SMPTE-429-9-2007-AM.xsd"
322 File "%cdist_deps%/share/libdcp/xsd/xmldsig-core-schema.xsd"
323 File "%cdist_deps%/share/libdcp/xsd/XMLSchema.dtd"
324 File "%cdist_deps%/share/libdcp/xsd/XMLSchema.xsd"
325 File "%cdist_deps%/share/libdcp/xsd/xml.xsd"
326 SectionEnd
327     """, file=f)
328
329     if debug:
330         print('Section "DCP-o-matic 2 debug" SEC_MASTER', file=f)
331     else:
332         print('Section "DCP-o-matic 2" SEC_MASTER', file=f)
333
334     print('SetOutPath "$INSTDIR\\bin"', file=f)
335
336     if debug:
337         print('CreateDirectory "$SMPROGRAMS\\DCP-o-matic 2 debug"', file=f)
338     else:
339         print('CreateDirectory "$SMPROGRAMS\\DCP-o-matic 2"', file=f)
340
341     if variant != 'swaroop-theater':
342         print("""
343 File "%binaries%/src/tools/dcpomatic2.exe"
344 File "%binaries%/src/tools/dcpomatic2_batch.exe"
345 File "%binaries%/src/tools/dcpomatic2_cli.exe"
346 File "%binaries%/src/tools/dcpomatic2_create.exe"
347 File "%binaries%/src/tools/dcpomatic2_kdm.exe"
348 File "%binaries%/src/tools/dcpomatic2_kdm_cli.exe"
349     """, file=f)
350
351     if disk:
352         print("""
353 File "%binaries%/src/tools/dcpomatic2_disk.exe"
354 File "%binaries%/src/tools/dcpomatic2_disk_writer.exe"
355 File "%resources%/dcpomatic2_disk_writer.exe.manifest"
356     """, file=f)
357
358     print("""
359 File "%binaries%/src/tools/dcpomatic2_player.exe"
360 File "%binaries%/src/tools/dcpomatic2_playlist.exe"
361     """, file=f)
362
363     if debug:
364         if variant != "swaroop-theater":
365             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2 debug\\DCP-o-matic 2 debug.lnk" "$INSTDIR\\bin\\dcpomatic2_debug.bat"', file=f)
366             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2 debug\\DCP-o-matic 2 Batch Converter debug.lnk" "$INSTDIR\\bin\\dcpomatic2_batch_debug.bat" ""', file=f)
367             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2 debug\\DCP-o-matic 2 KDM Creator debug.lnk" "$INSTDIR\\bin\\dcpomatic2_kdm_debug.bat" ""', file=f)
368             if disk:
369                 print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2 debug\\DCP-o-matic 2 Disk Writer debug.lnk" "$INSTDIR\\bin\\dcpomatic2_disk_debug.bat" ""', file=f)
370             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2 debug\\Uninstall DCP-o-matic 2 debug.lnk" "$INSTDIR\\Uninstall.exe"', file=f)
371         print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2 debug\\DCP-o-matic 2 Player debug.lnk" "$INSTDIR\\bin\\dcpomatic2_player_debug.bat" ""', file=f)
372         print('WriteRegStr HKLM "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\DCP-o-matic 2 debug" "DisplayName" "DCP-o-matic 2 debug (remove only)"', file=f)
373         print('WriteRegStr HKLM "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\DCP-o-matic 2 debug" "UninstallString" "$INSTDIR\\Uninstall.exe"', file=f)
374     else:
375         if variant != "swaroop-theater":
376             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\DCP-o-matic 2.lnk" "$INSTDIR\\bin\\dcpomatic2.exe"', file=f)
377             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\DCP-o-matic 2 Batch Converter.lnk" "$INSTDIR\\bin\\dcpomatic2_batch.exe"', file=f)
378             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\DCP-o-matic 2 KDM Creator.lnk" "$INSTDIR\\bin\\dcpomatic2_kdm.exe"', file=f)
379             if disk:
380                 print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\DCP-o-matic 2 Disk Writer.lnk" "$INSTDIR\\bin\\dcpomatic2_disk.exe"', file=f)
381             print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\Uninstall DCP-o-matic 2.lnk" "$INSTDIR\\Uninstall.exe"', file=f)
382         print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\DCP-o-matic 2 Player.lnk" "$INSTDIR\\bin\\dcpomatic2_player.exe"', file=f)
383         print('CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\DCP-o-matic 2 Playlist Editor.lnk" "$INSTDIR\\bin\\dcpomatic2_playlist.exe"', file=f)
384         print('WriteRegStr HKLM "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\DCP-o-matic2" "DisplayName" "DCP-o-matic 2 (remove only)"', file=f)
385         print('WriteRegStr HKLM "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\DCP-o-matic2" "UninstallString" "$INSTDIR\\Uninstall.exe"', file=f)
386
387     print("SectionEnd", file=f)
388
389     if debug:
390         print('Section "DCP-o-matic 2 debug desktop shortcuts" SEC_MASTER_DESKTOP', file=f)
391         print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 Player debug.lnk" "$INSTDIR\\bin\\dcpomatic2_player_debug.bat" ""', file=f)
392         if variant != "swaroop-theater":
393             print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 debug.lnk" "$INSTDIR\\bin\\dcpomatic2_debug.bat" ""', file=f)
394             print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 Batch Converter debug.lnk" "$INSTDIR\\bin\\dcpomatic2_batch_debug.bat" ""', file=f)
395             print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 KDM Creator debug.lnk" "$INSTDIR\\bin\\dcpomatic2_kdm_debug.bat" ""', file=f)
396             if disk:
397                 print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 Disk Writer debug.lnk" "$INSTDIR\\bin\\dcpomatic2_disk_debug.bat" ""', file=f)
398     else:
399         print('Section "DCP-o-matic 2 desktop shortcuts" SEC_MASTER_DESKTOP', file=f)
400         print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 Player.lnk" "$INSTDIR\\bin\\dcpomatic2_player.exe"', file=f)
401         if variant != "swaroop-theater":
402             print('CreateShortCut "$DESKTOP\\DCP-o-matic 2.lnk" "$INSTDIR\\bin\\dcpomatic2.exe" ""', file=f)
403             print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 Batch Converter.lnk" "$INSTDIR\\bin\\dcpomatic2_batch.exe"', file=f)
404             print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 KDM Creator.lnk" "$INSTDIR\\bin\\dcpomatic2_kdm.exe"', file=f)
405             if disk:
406                 print('CreateShortCut "$DESKTOP\\DCP-o-matic 2 Disk Writer.lnk" "$INSTDIR\\bin\\dcpomatic2_disk.exe"', file=f)
407
408     print("SectionEnd", file=f)
409
410     if not debug and variant != "swaroop-theater":
411         print("""
412 Section "Encode server" SEC_SERVER
413 SetOutPath "$INSTDIR\\bin"
414 CreateDirectory "$SMPROGRAMS\\DCP-o-matic 2"
415 File "%binaries%/src/tools/dcpomatic2_server_cli.exe"
416 File "%binaries%/src/tools/dcpomatic2_server.exe"
417 CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\DCP-o-matic 2 Encode Server.lnk" "$INSTDIR\\bin\\dcpomatic2_server.exe" "" "$INSTDIR\\bin\\dcpomatic2_server.exe" 0
418 CreateShortCut "$SMPROGRAMS\\DCP-o-matic 2\\Uninstall DCP-o-matic 2.lnk" "$INSTDIR\\Uninstall.exe" "" "$INSTDIR\\Uninstall.exe" 0
419 SectionEnd
420     """, file=f)
421
422         print("""
423 Section "Encode server desktop shortcuts" SEC_SERVER_DESKTOP
424 CreateShortCut "$DESKTOP\\DCP-o-matic 2 Encode Server.lnk" "$INSTDIR\\bin\\dcpomatic2_server.exe" ""
425 SectionEnd
426     """, file=f)
427
428     if variant != "swaroop-theater":
429         if debug:
430             print('LangString DESC_SEC_MASTER ${LANG_ENGLISH} "DCP-o-matic 2 debug"', file=f)
431             print('LangString DESC_SEC_MASTER_DESKTOP ${LANG_ENGLISH} "DCP-o-matic 2 debug desktop shortcuts"', file=f)
432         else:
433             print('LangString DESC_SEC_MASTER ${LANG_ENGLISH} "DCP-o-matic 2"', file=f)
434             print('LangString DESC_SEC_MASTER_DESKTOP ${LANG_ENGLISH} "DCP-o-matic 2 desktop shortcuts"', file=f)
435             print('LangString DESC_SEC_SERVER ${LANG_ENGLISH} "DCP-o-matic 2 Encode Server"', file=f)
436             print('LangString DESC_SEC_SERVER_DESKTOP ${LANG_ENGLISH} "DCP-o-matic 2 Encode Server desktop shortcuts"', file=f)
437
438     print("""
439 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
440   !insertmacro MUI_DESCRIPTION_TEXT ${SEC_MASTER} $(DESC_SEC_MASTER)
441   !insertmacro MUI_DESCRIPTION_TEXT ${SEC_MASTER_DESKTOP} $(DESC_SEC_MASTER_DESKTOP)
442   !insertmacro MUI_DESCRIPTION_TEXT ${SEC_SERVER} $(DESC_SEC_SERVER)
443   !insertmacro MUI_DESCRIPTION_TEXT ${SEC_SERVER_DESKTOP} $(DESC_SEC_SERVER_DESKTOP)
444 !insertmacro MUI_FUNCTION_DESCRIPTION_END
445
446 !insertmacro MUI_PAGE_INSTFILES
447 !insertmacro MUI_PAGE_FINISH
448
449 !insertmacro MUI_UNPAGE_WELCOME
450 !insertmacro MUI_UNPAGE_CONFIRM
451 !insertmacro MUI_UNPAGE_INSTFILES
452 !insertmacro MUI_UNPAGE_FINISH
453 !insertmacro MUI_LANGUAGE "English"
454     """, file=f)
455
456     if debug:
457         print("""
458 Section "Uninstall"
459 RMDir /r "$INSTDIR\\*.*"
460 RMDir "$INSTDIR"
461 Delete "$DESKTOP\\DCP-o-matic 2 debug.lnk"
462 Delete "$DESKTOP\\DCP-o-matic 2 Batch Converter debug.lnk"
463 Delete "$DESKTOP\\DCP-o-matic 2 KDM Creator debug.lnk"
464 Delete "$DESKTOP\\DCP-o-matic 2 Disk Writer debug.lnk"
465 Delete "$SMPROGRAMS\\DCP-o-matic 2 debug\\*.*"
466 RmDir  "$SMPROGRAMS\\DCP-o-matic 2 debug"
467 DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\\DCP-o-matic 2 debug"
468 DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\DCP-o-matic 2 debug"
469  SectionEnd
470         """, file=f)
471     else:
472         print("""
473 Section "Uninstall"
474 RMDir /r "$INSTDIR\\*.*"
475 RMDir "$INSTDIR"
476 Delete "$DESKTOP\\DCP-o-matic 2.lnk"
477 Delete "$DESKTOP\\DCP-o-matic 2 Batch Converter.lnk"
478 Delete "$DESKTOP\\DCP-o-matic 2 Encode Server.lnk"
479 Delete "$DESKTOP\\DCP-o-matic 2 KDM creator.lnk"
480 Delete "$DESKTOP\\DCP-o-matic 2 Disk Writer.lnk"
481 Delete "$SMPROGRAMS\\DCP-o-matic 2\\*.*"
482 RmDir  "$SMPROGRAMS\\DCP-o-matic 2"
483 DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\\DCP-o-matic 2"
484 DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\DCP-o-matic 2"
485  SectionEnd
486     """, file=f)
487
488
489 def build(bld):
490     write_installer(32, None, bld.env.VERSION, bld.env.DEBUG, bld.env.VARIANT, bld.env.ENABLE_DISK)
491     write_installer(64, None, bld.env.VERSION, bld.env.DEBUG, bld.env.VARIANT, bld.env.ENABLE_DISK)
492     write_installer(32, 'xp', bld.env.VERSION, bld.env.DEBUG, bld.env.VARIANT, bld.env.ENABLE_DISK)
493     write_installer(64, 'xp', bld.env.VERSION, bld.env.DEBUG, bld.env.VARIANT, bld.env.ENABLE_DISK)