From 946d588d35747f18434d83e71a02401f05215333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Mon, 6 May 2019 11:23:12 +0200 Subject: [PATCH] cmake: Move Hunter init script --- CMakeLists.txt | 2 +- appveyor.yml | 2 +- cmake/{HunterConfig.cmake => Hunter/init.cmake} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename cmake/{HunterConfig.cmake => Hunter/init.cmake} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 46fd3ff..59d3399 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ include(GNUInstallDirs) if(HUNTER_ENABLED) set(HUNTER_CONFIGURATION_TYPES Release CACHE STRING "Build type of Hunter packages") include(HunterGate) - include(HunterConfig) + include(Hunter/init) include(defaults/HunterCacheServers) endif() diff --git a/appveyor.yml b/appveyor.yml index 05e9b43..7ac9f5b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -17,7 +17,7 @@ environment: - GO: true cache: - - C:\.hunter\_Base\Cache -> cmake\HunterConfig.cmake + - C:\.hunter\_Base\Cache -> cmake\Hunter\init.cmake before_build: - ps: >- diff --git a/cmake/HunterConfig.cmake b/cmake/Hunter/init.cmake similarity index 100% rename from cmake/HunterConfig.cmake rename to cmake/Hunter/init.cmake