Skip to content

Commit

Permalink
fix: update toml and CMakeLists.txt to reflect our latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
bpapaspyros committed Oct 14, 2024
1 parent 2e7f585 commit 3050b11
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions aica-package.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#syntax=ghcr.io/aica-technology/package-builder:v1
#syntax=ghcr.io/aica-technology/package-builder:v1.1.1

[metadata]
version = "0.0.1"
Expand All @@ -14,16 +14,17 @@ version = "0.0.1"

[build]
type = "ros"
image = "v1.0.1-iron"
image = "v2.0.0-jazzy"

[build.cmake-args]
## add any cmake args here, e.g.
# SOME_FLAG = "ON"
## you can override them in the CLI with `--build-arg config.build.cmake_args.SOME_FLAG=OFF`

[build.dependencies]
"@aica/foss/control-libraries" = "v7.4.1"
"@aica/foss/modulo" = "v4.2.1"
"@aica/foss/control-libraries" = "v9.0.0"
"@aica/foss/modulo" = "v5.0.0"
"@aica/internal/libpkgcheck" = "v4.0.0"

[build.packages.template-component-package]
source = "./source/template_component_package"
Expand Down
4 changes: 2 additions & 2 deletions source/template_component_package/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ if(NOT CMAKE_C_STANDARD)
set(CMAKE_C_STANDARD 99)
endif()

# default to C++17
# default to C++20
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 20)
endif()

if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
Expand Down

0 comments on commit 3050b11

Please sign in to comment.