Remove /nologo options from meson.build files; according to jpakkane, this is already provided by meson.

This commit is contained in:
Pietro Gagliardi 2019-03-25 20:17:42 -04:00
parent 1b9250e41e
commit 9527bb73ca
1 changed files with 1 additions and 2 deletions

View File

@ -92,7 +92,7 @@ if libui_MSVC
# TODO add these compiler flags (assuming meson doesn't provide an alternate method for these, which I know it does for EHsc):
add_project_arguments(
'/wd4100',
'/bigobj', '/nologo',
'/bigobj',
language: ['c', 'cpp', 'objc'])
if libui_is_debug
add_project_arguments('/RTC1', '/RTCs', '/RTCu',
@ -101,7 +101,6 @@ if libui_MSVC
add_project_link_arguments(
'/LARGEADDRESSAWARE',
'/NOLOGO',
'/INCREMENTAL:NO',
'/MANIFEST:NO',
language: ['c', 'cpp', 'objc'])