diff options
author | Brad King <brad.king@kitware.com> | 2014-03-17 13:49:58 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-03-17 13:49:58 (GMT) |
commit | 41b82db6855a26d01e1000b59da1792b954b326a (patch) | |
tree | f2e855dc09f6cb6cf7d887e2c963e8bedb639d9c /Tests/RunCMake/CMakeLists.txt | |
parent | 6aaaa6d0bd584b05a1492b3861e3589f5ffe544d (diff) | |
parent | 3df5147043d83aa09acd5c9ce31d5c602efb99db (diff) | |
download | CMake-41b82db6855a26d01e1000b59da1792b954b326a.zip CMake-41b82db6855a26d01e1000b59da1792b954b326a.tar.gz CMake-41b82db6855a26d01e1000b59da1792b954b326a.tar.bz2 |
Merge topic 'FindPkgConfig_Extend-PKG_CONFIG_PATH'
3df51470 FindPkgConfig: Extend PKG_CONFIG_PATH using CMake variables (#12926)
Diffstat (limited to 'Tests/RunCMake/CMakeLists.txt')
-rw-r--r-- | Tests/RunCMake/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/RunCMake/CMakeLists.txt b/Tests/RunCMake/CMakeLists.txt index 499d12b..f9d590a 100644 --- a/Tests/RunCMake/CMakeLists.txt +++ b/Tests/RunCMake/CMakeLists.txt @@ -107,6 +107,11 @@ if (QT4_FOUND) add_RunCMake_test(ObsoleteQtMacros) endif() +find_package(PkgConfig QUIET) +if(PKG_CONFIG_FOUND) + add_RunCMake_test(FindPkgConfig) +endif() + if("${CMAKE_GENERATOR}" MATCHES "Visual Studio [^6]") add_RunCMake_test(include_external_msproject) add_RunCMake_test(SolutionGlobalSections) |