Skip to content

Commit

Permalink
Going for Qt version 6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed Nov 12, 2024
1 parent 44141ee commit e797bbe
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 17 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ jobs:
ref: development
submodules: recursive

# - name: Checkout eclipse paho repo
# uses: actions/checkout@v4
# with:
# repository: eclipse/paho.mqtt.c
# path: paho

- name: Update before installing packages
run: sudo apt-get update

Expand All @@ -48,9 +42,6 @@ jobs:
- name: Install libssl-dev manually
run: sudo apt-get install libssl-dev

# - name: Install paho manually
# run: cd paho && mkdir build && cd build && sudo cmake -DPAHO_WITH_SSL=true .. && sudo make install

- name: Install curl manually
run: sudo apt-get install libcurl4-openssl-dev

Expand All @@ -71,7 +62,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 5.15.*
version: 6.8.*
host: 'linux'
target: 'desktop'
arch: 'linux_amd64_gcc'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ cmake_install.cmake
vscp-works-qt.sln
vscp-works-qt.vcxproj
vscp-works-qt.vcxproj.filters
DistributionKit/
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,15 @@ endif()
file(TO_CMAKE_PATH "$ENV{VSCP_ROOT}" VSCP_PATH)
message(STATUS "VSCP path = $ENV{VSCP_ROOT}")

if (DEFINED QT_PATH)
file(TO_CMAKE_PATH "$ENV{QT_ROOT_DIR}" QT_PATH)
message(STATUS "QT_ROOT_DIR = $ENV{QT_ROOT_DIR}")
endif()

if(MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
add_definitions(-DWIN32_LEAN_AND_MEANS)
add_definitions(-D_POSIX_C_SOURCE)
add_definitions(-D_POSIX_C_SOURCE)
add_definitions(-DVCPKG_TARGET_TRIPLET=x64-windows)
add_definitions(-D_SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING)
add_definitions(-D_SILENCE_ALL_MS_EXT_DEPRECATION_WARNINGS)
Expand Down
2 changes: 1 addition & 1 deletion third_party/libwebsockets
Submodule libwebsockets updated 120 files
2 changes: 1 addition & 1 deletion third_party/mongoose
Submodule mongoose updated 1985 files
2 changes: 1 addition & 1 deletion third_party/spdlog
Submodule spdlog updated 54 files
+0 −1 .clang-tidy
+26 −18 .github/workflows/linux.yml
+28 −0 .github/workflows/macos.yml
+148 −0 .github/workflows/windows.yml
+3 −0 .gitignore
+32 −8 CMakeLists.txt
+13 −10 INSTALL
+26 −3 README.md
+1 −1 bench/async_bench.cpp
+2 −2 bench/bench.cpp
+1 −1 bench/latency.cpp
+13 −2 cmake/utils.cmake
+24 −2 example/example.cpp
+2 −2 include/spdlog/common.h
+1 −1 include/spdlog/details/file_helper-inl.h
+3 −3 include/spdlog/details/mpmc_blocking_q.h
+14 −5 include/spdlog/details/os-inl.h
+0 −20 include/spdlog/details/registry-inl.h
+5 −11 include/spdlog/details/registry.h
+61 −67 include/spdlog/fmt/bundled/args.h
+3,077 −0 include/spdlog/fmt/bundled/base.h
+863 −500 include/spdlog/fmt/bundled/chrono.h
+122 −161 include/spdlog/fmt/bundled/color.h
+78 −160 include/spdlog/fmt/bundled/compile.h
+4 −3,322 include/spdlog/fmt/bundled/core.h
+424 −219 include/spdlog/fmt/bundled/format-inl.h
+1,615 −1,405 include/spdlog/fmt/bundled/format.h
+142 −181 include/spdlog/fmt/bundled/os.h
+77 −103 include/spdlog/fmt/bundled/ostream.h
+259 −243 include/spdlog/fmt/bundled/printf.h
+446 −286 include/spdlog/fmt/bundled/ranges.h
+598 −70 include/spdlog/fmt/bundled/std.h
+166 −73 include/spdlog/fmt/bundled/xchar.h
+0 −4 include/spdlog/fmt/fmt.h
+50 −0 include/spdlog/mdc.h
+71 −1 include/spdlog/pattern_formatter-inl.h
+1 −1 include/spdlog/sinks/ansicolor_sink.h
+4 −4 include/spdlog/sinks/base_sink.h
+1 −1 include/spdlog/sinks/callback_sink.h
+2 −0 include/spdlog/sinks/daily_file_sink.h
+2 −0 include/spdlog/sinks/hourly_file_sink.h
+1 −1 include/spdlog/sinks/msvc_sink.h
+1 −1 include/spdlog/sinks/rotating_file_sink-inl.h
+3 −2 include/spdlog/sinks/syslog_sink.h
+9 −0 include/spdlog/sinks/wincolor_sink-inl.h
+0 −10 include/spdlog/spdlog-inl.h
+0 −8 include/spdlog/spdlog.h
+1 −1 include/spdlog/version.h
+16 −17 src/bundled_fmtlib_format.cpp
+4 −2 tests/CMakeLists.txt
+6 −0 tests/includes.h
+61 −0 tests/test_create_dir.cpp
+20 −2 tests/test_misc.cpp
+130 −0 tests/test_pattern_formatter.cpp
2 changes: 1 addition & 1 deletion vscp
Submodule vscp updated 143 files

0 comments on commit e797bbe

Please sign in to comment.