Skip to content

Commit

Permalink
try fix
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Feb 19, 2024
1 parent a18e80d commit 4ca4e72
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
cache-key-prefix: 'install-qt-action'

- name: Install dependencies
run: conan install . -s compiler.cppstd=17 --build=missing -s build_type=${{env.BUILD_TYPE}} --output-folder=${{github.workspace}}/build
run: conan install . -s compiler.cppstd=17 --build=missing -s build_type=Release --output-folder=${{github.workspace}}/build

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: cmake -B ${{github.workspace}}/build -DCMAKE_TOOLCHAIN_FILE="${{github.workspace}}/build/conan_toolchain.cmake" -DCMAKE_BUILD_TYPE==Release -DBUILDING_WITH_CONAN=ON

- name: Build Plotjuggler
shell: pwsh
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
run: cmake --build ${{github.workspace}}/build

5 changes: 5 additions & 0 deletions conanfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@
zeromq/4.3.5
zstd/1.5.5
zlib/1.2.13
arrow/15.0.0

[options]
zeromq*:shared=False

[generators]
CMakeDeps
CMakeToolchain

[tool_requires]
cmake/3.28.1

2 changes: 1 addition & 1 deletion plotjuggler_plugins/DataLoadMCAP/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if(BUILDING_WITH_CONAN)
find_package(zstd CONFIG REQUIRED)
find_package(zstd REQUIRED)
set(Zstd_LIBRARIES zstd::libzstd_static)
set(Zstd_FOUND ON)
else()
Expand Down

0 comments on commit 4ca4e72

Please sign in to comment.