diff options
author | Doug Richardson <doug@rekt.email> | 2020-04-13 15:42:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 00:42:50 +0200 |
commit | 05fd64777087e3f6886e3fdda2fd906ccda7e165 (patch) | |
tree | e409a135b2857f499283b229d172ea93aa1aeee9 | |
parent | bf58c0007161040dbb5319a91b2b63f7e0b74524 (diff) | |
download | rneovim-05fd64777087e3f6886e3fdda2fd906ccda7e165.tar.gz rneovim-05fd64777087e3f6886e3fdda2fd906ccda7e165.tar.bz2 rneovim-05fd64777087e3f6886e3fdda2fd906ccda7e165.zip |
Suppress Microsoft copyright banner. (#12114)
-rw-r--r-- | src/nvim/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 33ca33a244..0521b7be53 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -220,7 +220,7 @@ set(gen_cflags ${gen_cflags} ${C_FLAGS_${build_type}_ARRAY} ${C_FLAGS_ARRAY}) function(get_preproc_output varname iname) if(MSVC) - set(${varname} /P /Fi${iname} PARENT_SCOPE) + set(${varname} /P /Fi${iname} /nologo PARENT_SCOPE) else() set(${varname} -E -o ${iname} PARENT_SCOPE) endif() |