From 146496d889b763669f13b971e781a275bee9dc98 Mon Sep 17 00:00:00 2001 From: cos Date: Sun, 29 Jun 2025 14:24:42 +0200 Subject: [PATCH] Correct indentation --- CMakeLists.txt | 6 +++--- appveyor.yml | 10 +++++----- conanfile.py | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 16e49b42e..2e1ef46dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -364,9 +364,9 @@ if(ROTOR_BUILD_DOC) WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Generating API documentation with Doxygen" VERBATIM) - endif() - file(GLOB DOC_IMAGES CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/docs/*.png) - file(COPY ${DOC_IMAGES} DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/doxygen) + endif() + file(GLOB DOC_IMAGES CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/docs/*.png) + file(COPY ${DOC_IMAGES} DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}/doxygen) else() message("Doxygen need to be installed to generate the doxygen documentation") endif() diff --git a/appveyor.yml b/appveyor.yml index 7c41d3f35..d97c9c98a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ image: - Ubuntu2204 -# - Visual Studio 2017 -- conan2 seems not supporting it any longer + # - Visual Studio 2017 -- conan2 seems not supporting it any longer - Visual Studio 2019 - Visual Studio 2022 @@ -25,10 +25,10 @@ stack: python 3.11 for: - -# on_finish: -# - sh: export APPVEYOR_SSH_BLOCK=true -# - sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e - -# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) + # on_finish: + # - sh: export APPVEYOR_SSH_BLOCK=true + # - sh: curl -sflL 'https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-ssh.sh' | bash -e - + # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) install: - cmd: set PATH=%PY_SCRIPTS%;%PATH% - cmd: echo %PATH% diff --git a/conanfile.py b/conanfile.py index a8106e5e9..99093ca70 100644 --- a/conanfile.py +++ b/conanfile.py @@ -58,8 +58,8 @@ def requirements(self): if self.options.enable_fltk: self.requires("fltk/1.3.9") -# def layout(self): -# cmake_layout(self) + # def layout(self): + # cmake_layout(self) def generate(self): tc = CMakeToolchain(self) @@ -82,8 +82,8 @@ def generate(self): def validate(self): minimal_cpp_standard = "17" -# if self.settings.compiler.get_safe("cppstd"): -# check_min_cppstd(self, minimal_cpp_standard) + # if self.settings.compiler.get_safe("cppstd"): + # check_min_cppstd(self, minimal_cpp_standard) minimal_version = { "gcc": "7", "clang": "6",