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:
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()