Remove /nologo options from meson.build files; according to jpakkane, this is already provided by meson.
This commit is contained in:
parent
1b9250e41e
commit
9527bb73ca
|
@ -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):
|
# 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(
|
add_project_arguments(
|
||||||
'/wd4100',
|
'/wd4100',
|
||||||
'/bigobj', '/nologo',
|
'/bigobj',
|
||||||
language: ['c', 'cpp', 'objc'])
|
language: ['c', 'cpp', 'objc'])
|
||||||
if libui_is_debug
|
if libui_is_debug
|
||||||
add_project_arguments('/RTC1', '/RTCs', '/RTCu',
|
add_project_arguments('/RTC1', '/RTCs', '/RTCu',
|
||||||
|
@ -101,7 +101,6 @@ if libui_MSVC
|
||||||
|
|
||||||
add_project_link_arguments(
|
add_project_link_arguments(
|
||||||
'/LARGEADDRESSAWARE',
|
'/LARGEADDRESSAWARE',
|
||||||
'/NOLOGO',
|
|
||||||
'/INCREMENTAL:NO',
|
'/INCREMENTAL:NO',
|
||||||
'/MANIFEST:NO',
|
'/MANIFEST:NO',
|
||||||
language: ['c', 'cpp', 'objc'])
|
language: ['c', 'cpp', 'objc'])
|
||||||
|
|
Loading…
Reference in New Issue