From be911b4fd99a9aa1e08be79be30cbaef6a30ba9c Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Wed, 22 Dec 2021 16:27:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D0=BC=D0=B5=D0=BD=D0=B0=20=D1=84=D0=B0?= =?UTF-8?q?=D0=B9=D0=BB=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MyxCMake/functions/MyxCMakeGenerateGitInfoHeader.cmake | 2 +- MyxCMake/functions/MyxCMakeGeneratePrivateConfigHeader.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MyxCMake/functions/MyxCMakeGenerateGitInfoHeader.cmake b/MyxCMake/functions/MyxCMakeGenerateGitInfoHeader.cmake index 6583793..7df7bf6 100644 --- a/MyxCMake/functions/MyxCMakeGenerateGitInfoHeader.cmake +++ b/MyxCMake/functions/MyxCMakeGenerateGitInfoHeader.cmake @@ -1,5 +1,5 @@ function(myx_cmake_generate_git_info_header) - set(output_file ${CMAKE_BINARY_DIR}/include/myx_cmake_git_info.hpp) + set(output_file ${CMAKE_BINARY_DIR}/include/myx_cmake_git_info_p.hpp) if(MYX_CMAKE_GENERATED_HEADERS_PATH) set(output_file ${MYX_CMAKE_GENERATED_HEADERS_PATH}/myx_cmake_git_info_p.hpp) elseif(ARGV0) diff --git a/MyxCMake/functions/MyxCMakeGeneratePrivateConfigHeader.cmake b/MyxCMake/functions/MyxCMakeGeneratePrivateConfigHeader.cmake index af97df1..cd1bdd0 100644 --- a/MyxCMake/functions/MyxCMakeGeneratePrivateConfigHeader.cmake +++ b/MyxCMake/functions/MyxCMakeGeneratePrivateConfigHeader.cmake @@ -2,9 +2,9 @@ function(myx_cmake_generate_private_config_header) include(MyxCMakeLargeFiles) myx_cmake_test_large_files(HAVE_LARGEFILES) - set(output_file ${CMAKE_BINARY_DIR}/include/myx_cmake_private_config.hpp) + set(output_file ${CMAKE_BINARY_DIR}/include/myx_cmake_private_config_p.hpp) if(MYX_CMAKE_GENERATED_HEADERS_PATH) - set(output_file ${MYX_CMAKE_GENERATED_HEADERS_PATH}/myx_cmake_private_config.hpp) + set(output_file ${MYX_CMAKE_GENERATED_HEADERS_PATH}/myx_cmake_private_config_p.hpp) elseif(ARGV0) set(output_file ${ARGV0}) endif()