Skip to content

Commit 90996dc

Browse files
Merge pull request #1785 from ApexAI/iox-180-add-span-implementation
iox-#180 Add span implementation
2 parents 4fc5286 + e93b7b5 commit 90996dc

File tree

14 files changed

+1435
-4
lines changed

14 files changed

+1435
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ Github [labels](https://github.com/eclipse-iceoryx/iceoryx/labels) are used to g
325325

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

doc/website/release-notes/iceoryx-unreleased.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
- 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)
4242
- Implement dereference operator for smart_lock::Proxy [\#1966](https://github.com/eclipse-iceoryx/iceoryx/issues/1966)
4343
- `NewType` supports arithmetic operations and loops [\#1554](https://github.com/eclipse-iceoryx/iceoryx/issues/1554)
44+
- Add `iox::span` [\#180](https://github.com/eclipse-iceoryx/iceoryx/issues/180)
4445

4546
**Bugfixes:**
4647

iceoryx_dust/BUILD.bazel

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ cc_library(
2222
"source/**/*.cpp",
2323
"source/**/*.hpp",
2424
]),
25-
hdrs = glob(["include/**"]),
26-
strip_include_prefix = "include",
25+
hdrs = glob(["include/**"] + glob(["vocabulary/**"])),
26+
includes = [
27+
"include",
28+
"vocabulary/include/",
29+
],
2730
visibility = ["//visibility:public"],
2831
deps = ["//iceoryx_hoofs"],
2932
)

iceoryx_dust/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ iox_add_library(
4545
PRIVATE_LIBS_LINUX ${CODE_COVERAGE_LIBS}
4646
PUBLIC_LIBS iceoryx_hoofs::iceoryx_hoofs
4747
BUILD_INTERFACE ${PROJECT_SOURCE_DIR}/include
48+
${PROJECT_SOURCE_DIR}/vocabulary/include
4849
INSTALL_INTERFACE include/${PREFIX}
4950
EXPORT_INCLUDE_DIRS include/
51+
vocabulary/include/
5052
FILES
5153
source/cli/arguments.cpp
5254
source/cli/command_line_parser.cpp

0 commit comments

Comments
 (0)