Skip to content

Commit

Permalink
fix: PollSet ServiceNotFoundException
Browse files Browse the repository at this point in the history
  • Loading branch information
lanthora committed Jul 1, 2024
1 parent bec167d commit 8ee797e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ jobs:
mingw-w64-x86_64-cmake
mingw-w64-x86_64-ninja
mingw-w64-x86_64-gcc
mingw-w64-x86_64-libconfig
mingw-w64-x86_64-spdlog
mingw-w64-x86_64-uriparser
mingw-w64-x86_64-poco
mingw-w64-x86_64-qt6-base
- name: checkout
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ jobs:
mingw-w64-x86_64-cmake
mingw-w64-x86_64-ninja
mingw-w64-x86_64-gcc
mingw-w64-x86_64-libconfig
mingw-w64-x86_64-spdlog
mingw-w64-x86_64-uriparser
mingw-w64-x86_64-poco
mingw-w64-x86_64-qt6-base
- name: checkout
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5)
project(cake LANGUAGES CXX)

set (CANDY_VERSION "5.9.2")
set (CAKE_RELEASE "1")
set (CAKE_RELEASE "2")

set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
Expand Down Expand Up @@ -45,13 +45,13 @@ else()
endif()

include(FetchContent)
set(CANDY_DEVEL "1" CACHE BOOL "" FORCE)
set(CANDY_NOEXE "1" CACHE BOOL "" FORCE)
FetchContent_Declare(
candy
GIT_REPOSITORY https://github.com/lanthora/candy.git
GIT_TAG "v${CANDY_VERSION}"
GIT_TAG ac1b1427d8823af701c3e3e57c48ba4c63109848
)
set(CANDY_DEVEL "1" CACHE BOOL "" FORCE)
set(CANDY_NOEXE "1" CACHE BOOL "" FORCE)
FetchContent_GetProperties(candy)
if(NOT candy_POPULATED)
FetchContent_Populate(candy)
Expand Down

0 comments on commit 8ee797e

Please sign in to comment.