From 7debf3e4e20e4ff2eed782a07fdd5b62032e001a Mon Sep 17 00:00:00 2001 From: "Joseph D. Gaeddert" Date: Tue, 28 Jan 2025 17:11:46 -0500 Subject: [PATCH] cmake: moving config file template to cmake subdirectory --- CMakeLists.txt | 2 +- config.h.cmake => cmake/config.h.cmake | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename config.h.cmake => cmake/config.h.cmake (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9429b3ef1..48d55d8b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,7 @@ endif() include (CheckTypeSize) check_type_size(int SIZEOF_INT LANGUAGE C) -configure_file(config.h.cmake config.h) +configure_file(cmake/config.h.cmake config.h) #target_include_directories(test PRIVATE include) include_directories(include .) diff --git a/config.h.cmake b/cmake/config.h.cmake similarity index 100% rename from config.h.cmake rename to cmake/config.h.cmake