Skip to content

Commit

Permalink
Holoscan SDK v2.9.0 Release
Browse files Browse the repository at this point in the history
Co-authored-by: Alexis Girault <agirault@nvidia.com>
Co-authored-by: Andreas Heumann <aheumann@nvidia.com>
Co-authored-by: Cristiana Dinea <cdinea@nvidia.com>
Co-authored-by: Gigon Bae <gbae@nvidia.com>
Co-authored-by: Gregory Lee <grelee@nvidia.com>
Co-authored-by: Ian Stewart <istewart@nvidia.com>
Co-authored-by: Ilies Chergui <ichergui@nvidia.com>
Co-authored-by: Julien Jomier <jjomier@nvidia.com>
Co-authored-by: Shekhar Dwivedi <shekhard@nvidia.com>
Co-authored-by: Soham Sinha <sohams@nvidia.com>
Co-authored-by: Tom Birdsong <tbirdsong@nvidia.com>
Co-authored-by: Victor Chang <vicchang@nvidia.com>
Co-authored-by: Wendell Hom <whom@nvidia.com>
  • Loading branch information
13 people committed Jan 27, 2025
1 parent d961e54 commit d2221c1
Show file tree
Hide file tree
Showing 296 changed files with 9,091 additions and 11,087 deletions.
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -1693,6 +1693,36 @@
}
]
},
{
"name": "(gdb) examples/wrap_holoscan_as_gxf_extension",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.buildDirectory}/bin/gxe",
"args": [
"--app",
"examples/wrap_holoscan_as_gxf_extension/gxf_app/ping.yaml",
"--manifest",
"examples/wrap_holoscan_as_gxf_extension/gxf_app/test_holoscan_as_gxf_ext_manifest.yaml",
"--severity",
"4"
],
"stopAtEntry": false,
"cwd": "${command:cmake.buildDirectory}",
"environment": [
{
"name": "HOLOSCAN_LOG_LEVEL",
"value": "DEBUG"
},
],
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "(gdb) Python: tests",
"type": "cppdbg",
Expand Down
12 changes: 10 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -343,7 +343,10 @@ COMPONENT "holoscan-gxf_libs"
)

# Install CMake script for GXF wrapping of extensions
install(FILES "${CMAKE_SOURCE_DIR}/cmake/modules/WrapOperatorAsGXFExtension.cmake"
install(
FILES
"${CMAKE_SOURCE_DIR}/cmake/modules/WrapAsGXFComponent.cmake"
"${CMAKE_SOURCE_DIR}/cmake/modules/WrapOperatorAsGXFExtension.cmake"
DESTINATION "${HOLOSCAN_INSTALL_LIB_DIR}/cmake/holoscan"
COMPONENT "holoscan-gxf_libs"
)
Expand All @@ -353,6 +356,11 @@ DESTINATION "${HOLOSCAN_INSTALL_LIB_DIR}/cmake/holoscan"
COMPONENT "holoscan-gxf_libs"
)

install(DIRECTORY "${CMAKE_SOURCE_DIR}/cmake/modules/wrap_resource_as_gxf_template"
DESTINATION "${HOLOSCAN_INSTALL_LIB_DIR}/cmake/holoscan"
COMPONENT "holoscan-gxf_libs"
)

# Install CMake scripts to download data from NGC so it can be reused by HoloHub
install(FILES "${CMAKE_SOURCE_DIR}/cmake/modules/HoloscanDownloadData.cmake"
DESTINATION "${HOLOSCAN_INSTALL_LIB_DIR}/cmake/holoscan"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8.0
2.9.0
Loading

0 comments on commit d2221c1

Please sign in to comment.