diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-07-04 22:08:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-08-02 13:46:48 (GMT) |
commit | 08e7fb3cfa80775ea8e50862180e4c3da6af9717 (patch) | |
tree | 2d56059c60a529594ee31cc7d4d854830347d43a /CTestCustom.cmake.in | |
parent | 61eb5d4de54c1fd2c05ac51d9f604a4d7ad4380b (diff) | |
download | CMake-08e7fb3cfa80775ea8e50862180e4c3da6af9717.zip CMake-08e7fb3cfa80775ea8e50862180e4c3da6af9717.tar.gz CMake-08e7fb3cfa80775ea8e50862180e4c3da6af9717.tar.bz2 |
cmFindPackageCommand: Compile-time path generator expressions
Original code had path generators built at run-time using a linked list
of dynamically allocated nodes each of which was responsible to generate
a path segment.
However, the combination of used generators is totally well known at
compile time.
Diffstat (limited to 'CTestCustom.cmake.in')
-rw-r--r-- | CTestCustom.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index 49026a3..967e1bf 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -74,6 +74,7 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*rand.*may return deterministic values" "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*rand.*isn.*t random" # we do not do crypto "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*srand.*seed choices are.*poor" # we do not do crypto + "cmFindPackageCommand.cxx.*: warning #177-D: parameter .* was declared but never referenced" "IPA warning: function.*multiply defined in" "LICENSE WARNING" # PGI license expiry. Not useful in nightly testing. |