Skip to content

Commit

Permalink
Merge pull request #1785 from ApexAI/iox-180-add-span-implementation
Browse files Browse the repository at this point in the history
iox-#180 Add span implementation
  • Loading branch information
mossmaurice authored Apr 25, 2023
2 parents 4fc5286 + e93b7b5 commit 90996dc
Show file tree
Hide file tree
Showing 14 changed files with 1,435 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ Github [labels](https://github.com/eclipse-iceoryx/iceoryx/labels) are used to g

| Ruleset name | Github issue label | Priority |
|---|---|---|
| [Adaptive AUTOSAR](https://www.autosar.org/fileadmin/standards/adaptive/19-11/AUTOSAR_RS_CPP14Guidelines.pdf) C++14 | AUTOSAR | :star::star::star: |
| [Adaptive AUTOSAR](https://www.autosar.org/fileadmin/standards/R22-11/AP/AUTOSAR_RS_CPP14Guidelines.pdf) C++14 | AUTOSAR | :star::star::star: |
| [SEI CERT C++](https://wiki.sei.cmu.edu/confluence/pages/viewpage.action?pageId=88046682) 2016 Coding Standard | CERT | :star::star: |
| [MISRA](https://www.misra.org.uk/) C++ 2008 | MISRA | :star: |

Expand Down
1 change: 1 addition & 0 deletions doc/website/release-notes/iceoryx-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
- Add posix::FileManagementInterface to offer common operations like ownership/permission handling to all file descriptor based constructs. [\#1952](https://github.com/eclipse-iceoryx/iceoryx/issues/1952)
- Implement dereference operator for smart_lock::Proxy [\#1966](https://github.com/eclipse-iceoryx/iceoryx/issues/1966)
- `NewType` supports arithmetic operations and loops [\#1554](https://github.com/eclipse-iceoryx/iceoryx/issues/1554)
- Add `iox::span` [\#180](https://github.com/eclipse-iceoryx/iceoryx/issues/180)

**Bugfixes:**

Expand Down
7 changes: 5 additions & 2 deletions iceoryx_dust/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ cc_library(
"source/**/*.cpp",
"source/**/*.hpp",
]),
hdrs = glob(["include/**"]),
strip_include_prefix = "include",
hdrs = glob(["include/**"] + glob(["vocabulary/**"])),
includes = [
"include",
"vocabulary/include/",
],
visibility = ["//visibility:public"],
deps = ["//iceoryx_hoofs"],
)
2 changes: 2 additions & 0 deletions iceoryx_dust/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ iox_add_library(
PRIVATE_LIBS_LINUX ${CODE_COVERAGE_LIBS}
PUBLIC_LIBS iceoryx_hoofs::iceoryx_hoofs
BUILD_INTERFACE ${PROJECT_SOURCE_DIR}/include
${PROJECT_SOURCE_DIR}/vocabulary/include
INSTALL_INTERFACE include/${PREFIX}
EXPORT_INCLUDE_DIRS include/
vocabulary/include/
FILES
source/cli/arguments.cpp
source/cli/command_line_parser.cpp
Expand Down
Loading

0 comments on commit 90996dc

Please sign in to comment.