diff options
author | Brad King <brad.king@kitware.com> | 2017-05-18 12:47:01 +0000 |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2017-05-18 08:47:04 -0400 |
commit | 373887162654781c25c9ddd9f6f671da4c65d206 (patch) | |
tree | 7df5bccdc22cc99c8a4ef4afb1aa3d99c85e2522 /Tests | |
parent | 6b1e35d2072b9846d7bee473dfdde60327703a27 (diff) | |
parent | 0fb0f346c04f36e1bd93bdf304232d41b5f697a8 (diff) | |
download | cmake-373887162654781c25c9ddd9f6f671da4c65d206.tar.gz |
Merge topic 'removeSetModulePath'
0fb0f346 Tests: Remove unnecessary setting of CMAKE_MODULE_PATH
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !853
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/FindGTest/Test/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/FindTIFF/Test/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/FindXalanC/Test/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/FindXercesC/Test/CMakeLists.txt | 3 |
4 files changed, 0 insertions, 12 deletions
diff --git a/Tests/FindGTest/Test/CMakeLists.txt b/Tests/FindGTest/Test/CMakeLists.txt index 99368ac712..b65b9d28f6 100644 --- a/Tests/FindGTest/Test/CMakeLists.txt +++ b/Tests/FindGTest/Test/CMakeLists.txt @@ -2,9 +2,6 @@ cmake_minimum_required(VERSION 3.1) project(TestFindGTest CXX) include(CTest) -# CMake does not actually provide FindGTest publicly. -set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../Source/Modules) - find_package(GTest REQUIRED) add_executable(test_gtest_tgt main.cxx) diff --git a/Tests/FindTIFF/Test/CMakeLists.txt b/Tests/FindTIFF/Test/CMakeLists.txt index 6985e3f9eb..85453edbcf 100644 --- a/Tests/FindTIFF/Test/CMakeLists.txt +++ b/Tests/FindTIFF/Test/CMakeLists.txt @@ -2,9 +2,6 @@ cmake_minimum_required(VERSION 3.1) project(TestFindTIFF C) include(CTest) -# CMake does not actually provide FindTIFF publicly. -set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../Source/Modules) - find_package(TIFF REQUIRED) add_executable(test_tiff_tgt main.c) diff --git a/Tests/FindXalanC/Test/CMakeLists.txt b/Tests/FindXalanC/Test/CMakeLists.txt index b445e0e109..a8c2a0a8ad 100644 --- a/Tests/FindXalanC/Test/CMakeLists.txt +++ b/Tests/FindXalanC/Test/CMakeLists.txt @@ -2,9 +2,6 @@ cmake_minimum_required(VERSION 3.1) project(TestFindXalanC CXX) include(CTest) -# CMake does not actually provide FindXalanC publicly. -set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../Source/Modules) - find_package(XalanC REQUIRED) add_executable(test_xalanc_tgt main.cxx) diff --git a/Tests/FindXercesC/Test/CMakeLists.txt b/Tests/FindXercesC/Test/CMakeLists.txt index 8e7767cfd6..267c6a9076 100644 --- a/Tests/FindXercesC/Test/CMakeLists.txt +++ b/Tests/FindXercesC/Test/CMakeLists.txt @@ -2,9 +2,6 @@ cmake_minimum_required(VERSION 3.1) project(TestFindXercesC CXX) include(CTest) -# CMake does not actually provide FindXercesC publicly. -set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../Source/Modules) - find_package(XercesC REQUIRED) add_executable(test_xercesc_tgt main.cxx) |