mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 07:42:23 +02:00
clapper-app: meson: Binaries with/without console on Windows
This commit is contained in:
@@ -88,5 +88,18 @@ executable(
|
|||||||
c_args: clapperapp_c_args,
|
c_args: clapperapp_c_args,
|
||||||
install: true,
|
install: true,
|
||||||
install_dir: bindir,
|
install_dir: bindir,
|
||||||
|
win_subsystem: 'windows',
|
||||||
)
|
)
|
||||||
|
if ['windows'].contains(host_machine.system())
|
||||||
|
executable(
|
||||||
|
meson.project_name() + '-console',
|
||||||
|
clapperapp_sources,
|
||||||
|
dependencies: clapperapp_deps,
|
||||||
|
include_directories: clapperapp_conf_inc,
|
||||||
|
c_args: clapperapp_c_args,
|
||||||
|
install: true,
|
||||||
|
install_dir: bindir,
|
||||||
|
win_subsystem: 'console',
|
||||||
|
)
|
||||||
|
endif
|
||||||
build_clapperapp = true
|
build_clapperapp = true
|
||||||
|
Reference in New Issue
Block a user