Permalink
Please
sign in to comment.
Browse files
cmake: fix syntax error in Win32Deps.cmake
In a construct such as: ```cmake if($ENV{FOO} MATCHES bar) ... endif() ``` if the environment variable is not set, the if statement becomes a syntax error because there is nothing being compared. Fix this by quoting the environment variable like so: ```cmake if("$ENV{FOO}" MATCHES bar) ... endif() ``` Signed-off-by: Rafael Kitover <rkitover@gmail.com>
- Loading branch information...
Submodule vcpkg
updated
32 files
0 comments on commit
23fe13d