Move innosetup meson config into scripts directory

The purpose is to keep the main meson build file as simple as possible
while keeping the innosetup config.
This commit is contained in:
Francesco Abbate
2021-09-04 18:15:07 +02:00
parent 4e6f4d5c39
commit 9e5d404b29
3 changed files with 10 additions and 8 deletions
+8
View File
@@ -0,0 +1,8 @@
if host_machine.system() == 'windows'
configure_file(
input : 'innosetup/innosetup.iss.in',
output : 'innosetup.iss',
configuration : conf_data
)
endif