-
-
Notifications
You must be signed in to change notification settings - Fork 646
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62931ca
commit 04c1e16
Showing
3 changed files
with
4 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ on: [push, pull_request] | |
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: ros-tooling/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,15 +18,8 @@ CPMAddPackage("gh:nlohmann/[email protected]") | |
|
||
##### MCAP + compression libs ###### | ||
|
||
find_package(zstd QUIET) | ||
if (NOT zstd_FOUND) | ||
CPMAddPackage("gh:facebook/[email protected]") | ||
endif() | ||
|
||
find_package(lz4 QUIET) | ||
if (NOT lz4_FOUND) | ||
CPMAddPackage("gh:lz4/[email protected]") | ||
endif() | ||
CPMAddPackage("gh:facebook/[email protected]") | ||
CPMAddPackage("gh:lz4/[email protected]") | ||
|
||
find_package(mcap QUIET) | ||
if (NOT mcap_FOUND) | ||
|
@@ -41,6 +34,7 @@ if (NOT mcap_FOUND) | |
if (mcap_ADDED) | ||
add_library(mcap INTERFACE) | ||
target_include_directories(mcap INTERFACE "${mcap_SOURCE_DIR}/cpp/mcap/include") | ||
target_link_libraries(mcap INTERFACE zstd lz4) | ||
endif() | ||
endif() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters