mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-01 09:09:00 +08:00
13 lines
513 B
Diff
13 lines
513 B
Diff
diff --git a/mesonbuild/cmake/toolchain.py b/mesonbuild/cmake/toolchain.py
|
|
index abf2cf6..477629e 100644
|
|
--- a/mesonbuild/cmake/toolchain.py
|
|
+++ b/mesonbuild/cmake/toolchain.py
|
|
@@ -204,6 +204,6 @@ class CMakeToolchain:
|
|
@staticmethod
|
|
def is_cmdline_option(compiler: 'Compiler', arg: str) -> bool:
|
|
if compiler.get_argument_syntax() == 'msvc':
|
|
- return arg.startswith('/')
|
|
+ return arg.startswith(('/','-'))
|
|
else:
|
|
return arg.startswith('-')
|