Skip to content

Commit bc02bcd

Browse files
committed
cmake: move modules into the "cmake/" top level dir
Our custom CMake module currently live in "cmake/Modules". As the "cmake/" directory doesn't contain anything except the "Modules" directory, it doesn't really make sense to have the additional intermediate directory. So let's instead move the modules one level up into the "cmake/" top level directory.
1 parent 172a288 commit bc02bcd

22 files changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ IF(POLICY CMP0054)
2525
ENDIF()
2626

2727
# Add find modules to the path
28-
SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${libgit2_SOURCE_DIR}/cmake/Modules/")
28+
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${libgit2_SOURCE_DIR}/cmake/")
2929

3030
INCLUDE(CheckLibraryExists)
3131
INCLUDE(CheckFunctionExists)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)