From ae862453bddcd4f91f925262efb91fcbf0a7ee1f Mon Sep 17 00:00:00 2001 From: Vincent Stumpf Date: Sat, 10 Jun 2023 18:02:27 +0000 Subject: [PATCH] Move extra cmake files to tools/cmake --- CMakeLists.txt | 4 +++- {3rdparty => tools}/cmake/CopyImportFiles.cmake | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename {3rdparty => tools}/cmake/CopyImportFiles.cmake (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4415fe7d92..292ad75b7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,9 @@ cmake_minimum_required(VERSION 3.11) project(rAthena) # Configure CMake Modules -list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/cmake") +list(APPEND CMAKE_MODULE_PATH + "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/cmake" + "${CMAKE_CURRENT_SOURCE_DIR}/tools/cmake") # options diff --git a/3rdparty/cmake/CopyImportFiles.cmake b/tools/cmake/CopyImportFiles.cmake similarity index 100% rename from 3rdparty/cmake/CopyImportFiles.cmake rename to tools/cmake/CopyImportFiles.cmake