Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRobert <krzmbrzl@gmail.com>2020-09-17 16:11:17 +0300
committerRobert <krzmbrzl@gmail.com>2020-09-28 12:33:55 +0300
commita854ef022efd3fde5960cd5836402f529957c6ad (patch)
tree9eaa02ac50d605f6cb3f0caaebc7097f192ffd58 /cmake
parentc7318091d761ed7e07a7ac8c9c09c68610c343dd (diff)
BUILD(cmake): Don't warn about PDBs not being found (MSVC)
Diffstat (limited to 'cmake')
-rw-r--r--cmake/compiler.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/compiler.cmake b/cmake/compiler.cmake
index b6d7c9e9d..0c56a64d2 100644
--- a/cmake/compiler.cmake
+++ b/cmake/compiler.cmake
@@ -40,6 +40,8 @@ if(MSVC)
"/OPT:REF"
"/OPT:ICF"
"/INCREMENTAL:NO"
+ # Ignore warnings about PDBs not being found (happens e.g. for vc140 as vcpkg's portfile doesn't install the PDB files)
+ "/ignore:4099"
)
endif()