From 8f49b52841c94585ffbbb18abeeea50cb212ab06 Mon Sep 17 00:00:00 2001 From: Jeffrey Clark Date: Sun, 26 Jul 2015 12:22:29 -0500 Subject: [PATCH] move cmake modules into subdir --- CMakeLists.txt | 2 +- {cmake_modules => cmake/modules}/FindFFmpeg.cmake | 0 {cmake_modules => cmake/modules}/FindFontConfig.cmake | 0 {cmake_modules => cmake/modules}/FindSFML.cmake | 0 {cmake_modules => cmake/modules}/FindXML2.cmake | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename {cmake_modules => cmake/modules}/FindFFmpeg.cmake (100%) rename {cmake_modules => cmake/modules}/FindFontConfig.cmake (100%) rename {cmake_modules => cmake/modules}/FindSFML.cmake (100%) rename {cmake_modules => cmake/modules}/FindXML2.cmake (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 214452221..a9881fe93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ configure_file( "${PROJECT_BINARY_DIR}/config.h" ) -set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules" ${CMAKE_MODULE_PATH}) +set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ${CMAKE_MODULE_PATH}) set(EXTLIBS_PATH "${CMAKE_SOURCE_DIR}/extlibs") include(InstallRequiredSystemLibraries) diff --git a/cmake_modules/FindFFmpeg.cmake b/cmake/modules/FindFFmpeg.cmake similarity index 100% rename from cmake_modules/FindFFmpeg.cmake rename to cmake/modules/FindFFmpeg.cmake diff --git a/cmake_modules/FindFontConfig.cmake b/cmake/modules/FindFontConfig.cmake similarity index 100% rename from cmake_modules/FindFontConfig.cmake rename to cmake/modules/FindFontConfig.cmake diff --git a/cmake_modules/FindSFML.cmake b/cmake/modules/FindSFML.cmake similarity index 100% rename from cmake_modules/FindSFML.cmake rename to cmake/modules/FindSFML.cmake diff --git a/cmake_modules/FindXML2.cmake b/cmake/modules/FindXML2.cmake similarity index 100% rename from cmake_modules/FindXML2.cmake rename to cmake/modules/FindXML2.cmake