Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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%
Expand Down
8 changes: 4 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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",
Expand Down