diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-10-07 16:28:25 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-10-07 16:28:25 (GMT) |
commit | 8dbb2090a2fac15f61710afef9887e224c1c7f72 (patch) | |
tree | f3d61c6208010147b50af07bea48ca05eab63adf | |
parent | d4ee998b61cf3c16e9e04da2173490589790a894 (diff) | |
download | CMake-8dbb2090a2fac15f61710afef9887e224c1c7f72.zip CMake-8dbb2090a2fac15f61710afef9887e224c1c7f72.tar.gz CMake-8dbb2090a2fac15f61710afef9887e224c1c7f72.tar.bz2 |
Wrong boolean value for CLI warnings
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index ed34569..15c5370 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2812,7 +2812,7 @@ int cmMakefile::TryCompile(const char *srcdir, const char *bindir, { // FIXME: Workaround to ignore unused CLI variables until the // 'ArgumentExpansion' test succeeds with CMAKE_STRICT on - cm.SetWarnUnusedCli(true); + cm.SetWarnUnusedCli(false); //cm.SetArgs(*cmakeArgs, true); cm.SetCacheArgs(*cmakeArgs); |