diff options
author | Craig Scott <craig.scott@crascit.com> | 2017-05-15 22:05:32 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2017-05-15 22:05:32 (GMT) |
commit | 0fb0f346c04f36e1bd93bdf304232d41b5f697a8 (patch) | |
tree | 8ea42e338b1adad7bd3d3a5ef844c3b74b52089e /Tests | |
parent | 471779764757a3a6e4b5fb1db9b8943630b18f3d (diff) | |
download | CMake-0fb0f346c04f36e1bd93bdf304232d41b5f697a8.zip CMake-0fb0f346c04f36e1bd93bdf304232d41b5f697a8.tar.gz CMake-0fb0f346c04f36e1bd93bdf304232d41b5f697a8.tar.bz2 |
Tests: Remove unnecessary setting of CMAKE_MODULE_PATH
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 99368ac..b65b9d2 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 6985e3f..85453ed 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 b445e0e..a8c2a0a 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 8e7767c..267c6a9 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) |