Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/c631d60eea351a1d4654012056a7816f907f76c6/third-party/ArduinoJson/extras/tests/catch/CMakeLists.txt You should set ROOT_URL correctly, otherwise the web may not work correctly.
MicroDexed/third-party/ArduinoJson/extras/tests/catch/CMakeLists.txt

18 lines
376 B

# ArduinoJson - https://arduinojson.org
# Copyright Benoit Blanchon 2014-2021
# MIT License
add_library(catch
catch.hpp
catch.cpp
)
target_include_directories(catch
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}
)
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
# prevent "xxx will change in GCC x.x" with arm-linux-gnueabihf-gcc
target_compile_options(catch PRIVATE -Wno-psabi)
endif()