Add missing resource file on windows

This commit is contained in:
U-ST\francesco abbate
2020-06-03 12:22:17 +02:00
parent 9bd4a8b9de
commit f61ffc4710
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -19,5 +19,11 @@ if get_option('buildtype') == 'release'
lite_link_args += ['-static-libgcc', '-static-libstdc++']
endif
lite_rc = []
if host_machine.system() == 'windows'
windows = import('windows')
lite_rc += windows.compile_resources('res.rc')
endif
subdir('src')
subdir('tests')