print-editor demo: Fix linking on Visual Studio

We need to pass in '/entry:mainCRTStartup' as we did for the other demo
programs that have 'gui_app: true' in their Meson build settings.
This commit is contained in:
Chun-wei Fan
2020-05-18 11:35:52 +08:00
parent f958a6ecf7
commit a4416e389a

View File

@@ -3,4 +3,5 @@ executable('print-editor',
c_args: common_cflags,
dependencies: libgtk_dep,
include_directories: confinc,
gui_app: true)
gui_app: true,
link_args: extra_demo_ldflags)