Skip to content

Commit 0cc1f97

Browse files
iox-eclipse-iceoryx#482 Replace s/-ex/-cpp in binary and runtime names
Signed-off-by: Simon Hoinkis <[email protected]>
1 parent 4a59387 commit 0cc1f97

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+188
-188
lines changed

iceoryx_dds/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ Open three terminals on machine `A` and execute the following commands:
7777

7878
- Terminal 1: `./build/iox-roudi`
7979
- Terminal 2: `./build/iceoryx_dds/iox-gw-iceoryx2dds` to send all samples from the publisher to DDS
80-
- Terminal 3: `./build/iceoryx_examples/icedelivery/iox-ex-publisher-typed`
80+
- Terminal 3: `./build/iceoryx_examples/icedelivery/iox-cpp-publisher`
8181

8282
Open another three terminals on machine `B` and execute the commands:
8383

8484
- Terminal 1: `./build/iox-roudi`
8585
- Terminal 2: `./build/iceoryx_dds/iox-gw-dds2iceoryx` to receive all samples from the publisher via DDS
86-
- Terminal 3: `./build/iceoryx_examples/icedelivery/iox-ex-subscriber-typed`
86+
- Terminal 3: `./build/iceoryx_examples/icedelivery/iox-cpp-subscriber`
8787

8888
If you would like to have a bidirectional communication just run `iox-gw-dds2iceoryx` and
8989
`iox-gw-iceoryx2dds` on the same machine.

iceoryx_dds/examples/docker/publisher_node.entrypoint

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ fi
3030

3131
/usr/bin/iox-roudi &
3232
/usr/bin/iox-gw-iceoryx2dds &
33-
/usr/bin/iox-ex-publisher-simple
33+
/usr/bin/iox-cpp-publisher

iceoryx_dds/examples/docker/subscriber_node.entrypoint

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ fi
3030

3131
/usr/bin/iox-roudi &
3232
/usr/bin/iox-gw-dds2iceoryx &
33-
/usr/bin/iox-ex-subscriber-simple
33+
/usr/bin/iox-cpp-subscriber

iceoryx_examples/callbacks/CMakeLists.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,28 @@ find_package(iceoryx_utils CONFIG REQUIRED)
2525
get_target_property(ICEORYX_CXX_STANDARD iceoryx_posh::iceoryx_posh CXX_STANDARD)
2626
include(IceoryxPlatform)
2727

28-
add_executable(iox-ex-callbacks-publisher ./ice_callbacks_publisher.cpp)
29-
target_link_libraries(iox-ex-callbacks-publisher
28+
add_executable(iox-cpp-callbacks-publisher ./ice_callbacks_publisher.cpp)
29+
target_link_libraries(iox-cpp-callbacks-publisher
3030
iceoryx_posh::iceoryx_posh
3131
)
32-
target_compile_options(iox-ex-callbacks-publisher PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
32+
target_compile_options(iox-cpp-callbacks-publisher PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
3333

34-
add_executable(iox-ex-callbacks-subscriber ./ice_callbacks_subscriber.cpp)
35-
target_link_libraries(iox-ex-callbacks-subscriber
34+
add_executable(iox-cpp-callbacks-subscriber ./ice_callbacks_subscriber.cpp)
35+
target_link_libraries(iox-cpp-callbacks-subscriber
3636
iceoryx_posh::iceoryx_posh
3737
)
38-
target_compile_options(iox-ex-callbacks-subscriber PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
38+
target_compile_options(iox-cpp-callbacks-subscriber PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
3939

4040
set_target_properties(
41-
iox-ex-callbacks-subscriber
42-
iox-ex-callbacks-publisher
41+
iox-cpp-callbacks-subscriber
42+
iox-cpp-callbacks-publisher
4343
PROPERTIES
4444
CXX_STANDARD_REQUIRED ON
4545
CXX_STANDARD ${ICEORYX_CXX_STANDARD}
4646
POSITION_INDEPENDENT_CODE ON
4747
)
4848

4949
install(
50-
TARGETS iox-ex-callbacks-publisher iox-ex-callbacks-subscriber
50+
TARGETS iox-cpp-callbacks-publisher iox-cpp-callbacks-subscriber
5151
RUNTIME DESTINATION bin
5252
)

iceoryx_examples/callbacks/ice_callbacks_publisher.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <iostream>
2525

2626
bool keepRunning = true;
27-
constexpr char APP_NAME[] = "iox-ex-callbacks-publisher";
27+
constexpr char APP_NAME[] = "iox-cpp-callbacks-publisher";
2828

2929
static void sigHandler(int f_sig [[gnu::unused]])
3030
{

iceoryx_examples/callbacks/ice_callbacks_subscriber.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ iox::posix::Semaphore shutdownSemaphore =
3131
iox::posix::Semaphore::create(iox::posix::CreateUnnamedSingleProcessSemaphore, 0U).value();
3232

3333
std::atomic_bool keepRunning{true};
34-
constexpr char APP_NAME[] = "iox-ex-callbacks-subscriber";
34+
constexpr char APP_NAME[] = "iox-cpp-callbacks-subscriber";
3535

3636
iox::cxx::optional<CounterTopic> leftCache;
3737
iox::cxx::optional<CounterTopic> rightCache;

iceoryx_examples/callbacks_in_c/CMakeLists.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -30,30 +30,30 @@ if("-Wno-noexcept-type" IN_LIST ICEORYX_WARNINGS)
3030
list(REMOVE_ITEM ICEORYX_WARNINGS "-Wno-noexcept-type")
3131
endif()
3232

33-
add_executable(iox-ex-c-callbacks-publisher ./ice_c_callbacks_publisher.c)
33+
add_executable(iox-c-callbacks-publisher ./ice_c_callbacks_publisher.c)
3434
set_source_files_properties(./ice_c_callbacks_publisher.c PROPERTIES LANGUAGE C)
35-
target_link_libraries(iox-ex-c-callbacks-publisher
35+
target_link_libraries(iox-c-callbacks-publisher
3636
iceoryx_binding_c::iceoryx_binding_c
3737
)
38-
target_compile_options(iox-ex-c-callbacks-publisher PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
38+
target_compile_options(iox-c-callbacks-publisher PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
3939

40-
add_executable(iox-ex-c-callbacks-subscriber ./ice_c_callbacks_subscriber.c)
40+
add_executable(iox-c-callbacks-subscriber ./ice_c_callbacks_subscriber.c)
4141
set_source_files_properties(./ice_c_callbacks_subscriber.c PROPERTIES LANGUAGE C)
42-
target_link_libraries(iox-ex-c-callbacks-subscriber
42+
target_link_libraries(iox-c-callbacks-subscriber
4343
iceoryx_binding_c::iceoryx_binding_c
4444
)
45-
target_compile_options(iox-ex-c-callbacks-subscriber PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
45+
target_compile_options(iox-c-callbacks-subscriber PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
4646

4747
set_target_properties(
48-
iox-ex-c-callbacks-subscriber
49-
iox-ex-c-callbacks-publisher
48+
iox-c-callbacks-subscriber
49+
iox-c-callbacks-publisher
5050
PROPERTIES
5151
CXX_STANDARD_REQUIRED ON
5252
CXX_STANDARD ${ICEORYX_CXX_STANDARD}
5353
POSITION_INDEPENDENT_CODE ON
5454
)
5555

5656
install(
57-
TARGETS iox-ex-c-callbacks-publisher iox-ex-c-callbacks-subscriber
57+
TARGETS iox-c-callbacks-publisher iox-c-callbacks-subscriber
5858
RUNTIME DESTINATION bin
5959
)

iceoryx_examples/callbacks_in_c/ice_c_callbacks_publisher.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static void sigHandler(int f_sig)
3434

3535
void sending()
3636
{
37-
iox_runtime_init("iox-ex-callbacks-publisher");
37+
iox_runtime_init("iox-cpp-callbacks-publisher");
3838

3939
iox_pub_options_t options;
4040
iox_pub_options_init(&options);

iceoryx_examples/icecrystal/Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ iox-roudi
1818
# If build from scratch with script in tools
1919
$ICEORYX_ROOT/build/iox-roudi
2020

21-
build/iceoryx_examples/icedelivery/iox-ex-publisher-untyped
21+
build/iceoryx_examples/icedelivery/iox-cpp-publisher
2222

23-
build/iceoryx_examples/icedelivery/iox-ex-subscriber-untyped
23+
build/iceoryx_examples/icedelivery/iox-cpp-subscriber
2424

2525
build/iox-introspection-client --all
2626
```

iceoryx_examples/icedelivery/CMakeLists.txt

+16-16
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,32 @@ find_package(iceoryx_utils CONFIG REQUIRED)
2727
get_target_property(ICEORYX_CXX_STANDARD iceoryx_posh::iceoryx_posh CXX_STANDARD)
2828
include(IceoryxPlatform)
2929

30-
add_executable(iox-ex-publisher ./iox_publisher.cpp)
31-
target_link_libraries(iox-ex-publisher
30+
add_executable(iox-cpp-publisher ./iox_publisher.cpp)
31+
target_link_libraries(iox-cpp-publisher
3232
iceoryx_posh::iceoryx_posh
3333
)
34-
target_compile_options(iox-ex-publisher PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
34+
target_compile_options(iox-cpp-publisher PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
3535

36-
add_executable(iox-ex-publisher-untyped ./iox_publisher_untyped.cpp)
37-
target_link_libraries(iox-ex-publisher-untyped
36+
add_executable(iox-cpp-publisher-untyped ./iox_publisher_untyped.cpp)
37+
target_link_libraries(iox-cpp-publisher-untyped
3838
iceoryx_posh::iceoryx_posh
3939
)
40-
target_compile_options(iox-ex-publisher-untyped PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
40+
target_compile_options(iox-cpp-publisher-untyped PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
4141

42-
add_executable(iox-ex-subscriber ./iox_subscriber.cpp)
43-
target_link_libraries(iox-ex-subscriber
42+
add_executable(iox-cpp-subscriber ./iox_subscriber.cpp)
43+
target_link_libraries(iox-cpp-subscriber
4444
iceoryx_posh::iceoryx_posh
4545
)
46-
target_compile_options(iox-ex-subscriber PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
46+
target_compile_options(iox-cpp-subscriber PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
4747

48-
add_executable(iox-ex-subscriber-untyped ./iox_subscriber_untyped.cpp)
49-
target_link_libraries(iox-ex-subscriber-untyped
48+
add_executable(iox-cpp-subscriber-untyped ./iox_subscriber_untyped.cpp)
49+
target_link_libraries(iox-cpp-subscriber-untyped
5050
iceoryx_posh::iceoryx_posh
5151
)
52-
target_compile_options(iox-ex-subscriber-untyped PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
52+
target_compile_options(iox-cpp-subscriber-untyped PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
5353

54-
set_target_properties(iox-ex-subscriber iox-ex-subscriber-untyped
55-
iox-ex-publisher iox-ex-publisher-untyped
54+
set_target_properties(iox-cpp-subscriber iox-cpp-subscriber-untyped
55+
iox-cpp-publisher iox-cpp-publisher-untyped
5656
PROPERTIES
5757
CXX_STANDARD_REQUIRED ON
5858
CXX_STANDARD ${ICEORYX_CXX_STANDARD}
@@ -61,6 +61,6 @@ set_target_properties(iox-ex-subscriber iox-ex-subscriber-untyped
6161

6262
# ========================================================== //
6363

64-
install(TARGETS iox-ex-publisher-untyped iox-ex-publisher
65-
iox-ex-subscriber-untyped iox-ex-subscriber
64+
install(TARGETS iox-cpp-publisher-untyped iox-cpp-publisher
65+
iox-cpp-subscriber-untyped iox-cpp-subscriber
6666
RUNTIME DESTINATION bin)

iceoryx_examples/icedelivery/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For the communication with RouDi a runtime object is created. The parameter of t
5959
unique string identifier for this publisher.
6060

6161
```cpp
62-
constexpr char APP_NAME[] = "iox-ex-publisher-untyped";
62+
constexpr char APP_NAME[] = "iox-cpp-publisher-untyped";
6363
iox::runtime::PoshRuntime::initRuntime(APP_NAME);
6464
```
6565
@@ -164,7 +164,7 @@ Similar to the publisher we need to include the runtime and the subscriber as we
164164
To make RouDi aware of the subscriber an runtime object is created, once again with a unique identifier string:
165165

166166
```cpp
167-
constexpr char APP_NAME[] = "iox-ex-subscriber-untyped";
167+
constexpr char APP_NAME[] = "iox-cpp-subscriber-untyped";
168168
iox::runtime::PoshRuntime::initRuntime(APP_NAME);
169169
```
170170

iceoryx_examples/icedelivery/iox_publisher.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <iostream>
2525

2626
bool killswitch = false;
27-
constexpr char APP_NAME[] = "iox-ex-publisher";
27+
constexpr char APP_NAME[] = "iox-cpp-publisher";
2828

2929
static void sigHandler(int f_sig [[gnu::unused]])
3030
{

iceoryx_examples/icedelivery/iox_publisher_untyped.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <iostream>
2525

2626
bool killswitch = false;
27-
constexpr char APP_NAME[] = "iox-ex-publisher-untyped";
27+
constexpr char APP_NAME[] = "iox-cpp-publisher-untyped";
2828

2929
static void sigHandler(int f_sig [[gnu::unused]])
3030
{

iceoryx_examples/icedelivery/iox_subscriber.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <iostream>
2525

2626
bool killswitch = false;
27-
constexpr char APP_NAME[] = "iox-ex-subscriber";
27+
constexpr char APP_NAME[] = "iox-cpp-subscriber";
2828

2929
static void sigHandler(int f_sig [[gnu::unused]])
3030
{

iceoryx_examples/icedelivery/iox_subscriber_untyped.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <iostream>
2525

2626
bool killswitch = false;
27-
constexpr char APP_NAME[] = "iox-ex-subscriber-untyped";
27+
constexpr char APP_NAME[] = "iox-cpp-subscriber-untyped";
2828

2929
static void sigHandler(int f_sig [[gnu::unused]])
3030
{

iceoryx_examples/iceensemble/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ The easiest way is the build all examples via `./tools/iceoryx_build_test.sh`. T
1919
```sh
2020
./build/iox-roudi
2121

22-
./build/iceoryx_examples/icedelivery/iox-ex-publisher-helloworld
23-
./build/iceoryx_examples/icedelivery/iox-ex-publisher
24-
./build/iceoryx_examples/icedelivery/iox-ex-publisher-untyped
25-
./build/iceoryx_examples/iceoptions/iox-ex-publisher-with-options
22+
./build/iceoryx_examples/icedelivery/iox-cpp-publisher-helloworld
23+
./build/iceoryx_examples/icedelivery/iox-cpp-publisher
24+
./build/iceoryx_examples/icedelivery/iox-cpp-publisher-untyped
25+
./build/iceoryx_examples/iceoptions/iox-cpp-publisher-with-options
2626
./build/iceoryx_examples/icedelivery_in_c/iox-c-publisher
2727

28-
./build/iceoryx_examples/icedelivery/iox-ex-subscriber
28+
./build/iceoryx_examples/icedelivery/iox-cpp-subscriber
2929
./build/iceoryx_examples/iceoptions/iox-subscriber-with-options
3030
```
3131

iceoryx_examples/iceensemble/run_iceensemble.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ command -v tmux >/dev/null 2>&1 || { echo >&2 "tmux is not installed but require
1919
$tmux new-session -d -s $SESSION
2020
$tmux new-window -a -t $SESSION $WORKSPACE/build/iox-roudi
2121

22-
$tmux split-window -t 0 -h $WORKSPACE/build/iceoryx_examples/icehello/iox-ex-publisher-helloworld
23-
$tmux split-window -t 1 -h $WORKSPACE/build/iceoryx_examples/icedelivery/iox-ex-publisher
24-
$tmux split-window -t 0 -h $WORKSPACE/build/iceoryx_examples/icedelivery/iox-ex-publisher-untyped
25-
$tmux split-window -t 0 -v $WORKSPACE/build/iceoryx_examples/iceoptions/iox-ex-publisher-with-options
22+
$tmux split-window -t 0 -h $WORKSPACE/build/iceoryx_examples/icehello/iox-cpp-publisher-helloworld
23+
$tmux split-window -t 1 -h $WORKSPACE/build/iceoryx_examples/icedelivery/iox-cpp-publisher
24+
$tmux split-window -t 0 -h $WORKSPACE/build/iceoryx_examples/icedelivery/iox-cpp-publisher-untyped
25+
$tmux split-window -t 0 -v $WORKSPACE/build/iceoryx_examples/iceoptions/iox-cpp-publisher-with-options
2626
$tmux split-window -t 2 -v $WORKSPACE/build/iceoryx_examples/icedelivery_in_c/iox-c-publisher
27-
$tmux split-window -t 4 -v $WORKSPACE/build/iceoryx_examples/icedelivery/iox-ex-subscriber
28-
$tmux split-window -t 6 -v $WORKSPACE/build/iceoryx_examples/iceoptions/iox-ex-subscriber-with-options
27+
$tmux split-window -t 4 -v $WORKSPACE/build/iceoryx_examples/icedelivery/iox-cpp-subscriber
28+
$tmux split-window -t 6 -v $WORKSPACE/build/iceoryx_examples/iceoptions/iox-cpp-subscriber-with-options
2929

3030
$tmux attach -t $SESSION

iceoryx_examples/icehello/CMakeLists.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ if ( NOT ICEORYX_CXX_STANDARD )
2727
include(IceoryxPlatform)
2828
endif ()
2929

30-
add_executable(iox-ex-publisher-helloworld ./iox_publisher_helloworld.cpp)
31-
target_link_libraries(iox-ex-publisher-helloworld
30+
add_executable(iox-cpp-publisher-helloworld ./iox_publisher_helloworld.cpp)
31+
target_link_libraries(iox-cpp-publisher-helloworld
3232
iceoryx_posh::iceoryx_posh
3333
)
34-
target_compile_options(iox-ex-publisher-helloworld PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
34+
target_compile_options(iox-cpp-publisher-helloworld PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
3535

36-
add_executable(iox-ex-subscriber-helloworld ./iox_subscriber_helloworld.cpp)
37-
target_link_libraries(iox-ex-subscriber-helloworld
36+
add_executable(iox-cpp-subscriber-helloworld ./iox_subscriber_helloworld.cpp)
37+
target_link_libraries(iox-cpp-subscriber-helloworld
3838
iceoryx_posh::iceoryx_posh
3939
)
40-
target_compile_options(iox-ex-subscriber-helloworld PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
40+
target_compile_options(iox-cpp-subscriber-helloworld PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
4141

42-
set_target_properties(iox-ex-subscriber-helloworld iox-ex-publisher-helloworld
42+
set_target_properties(iox-cpp-subscriber-helloworld iox-cpp-publisher-helloworld
4343
PROPERTIES
4444
CXX_STANDARD_REQUIRED ON
4545
CXX_STANDARD ${ICEORYX_CXX_STANDARD}
@@ -48,5 +48,5 @@ set_target_properties(iox-ex-subscriber-helloworld iox-ex-publisher-helloworld
4848

4949
# ========================================================== //
5050

51-
install(TARGETS iox-ex-publisher-helloworld iox-ex-subscriber-helloworld
51+
install(TARGETS iox-cpp-publisher-helloworld iox-cpp-subscriber-helloworld
5252
RUNTIME DESTINATION bin)

iceoryx_examples/icehello/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Next up, we include the publisher and the runtime:
4949
For the communication with the daemon RouDi, a runtime object is created. We use a unique string for identifying our application:
5050

5151
```cpp
52-
constexpr char APP_NAME[] = "iox-ex-publisher-helloworld";
52+
constexpr char APP_NAME[] = "iox-cpp-publisher-helloworld";
5353
iox::runtime::PoshRuntime::initRuntime(APP_NAME);
5454
```
5555
@@ -127,7 +127,7 @@ The subscriber needs to have similar includes, but unlike the publisher `subscri
127127
As well as the publisher, also the subscriber needs to register with the daemon RouDi:
128128

129129
```cpp
130-
constexpr char APP_NAME[] = "iox-ex-subscriber-helloworld";
130+
constexpr char APP_NAME[] = "iox-cpp-subscriber-helloworld";
131131
iox::runtime::PoshRuntime::initRuntime(APP_NAME);
132132
```
133133

iceoryx_examples/icehello/iox_publisher_helloworld.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <iostream>
2424

2525
bool killswitch = false;
26-
constexpr char APP_NAME[] = "iox-ex-publisher-helloworld";
26+
constexpr char APP_NAME[] = "iox-cpp-publisher-helloworld";
2727

2828
static void sigHandler(int f_sig [[gnu::unused]])
2929
{

iceoryx_examples/icehello/iox_subscriber_helloworld.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <iostream>
2424

2525
bool killswitch = false;
26-
constexpr char APP_NAME[] = "iox-ex-subscriber-helloworld";
26+
constexpr char APP_NAME[] = "iox-cpp-subscriber-helloworld";
2727

2828
static void sigHandler(int f_sig [[gnu::unused]])
2929
{

iceoryx_examples/iceoptions/CMakeLists.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ find_package(iceoryx_utils CONFIG REQUIRED)
2626
get_target_property(ICEORYX_CXX_STANDARD iceoryx_posh::iceoryx_posh CXX_STANDARD)
2727
include(IceoryxPlatform)
2828

29-
add_executable(iox-ex-publisher-with-options ./iox_publisher_with_options.cpp)
30-
target_link_libraries(iox-ex-publisher-with-options
29+
add_executable(iox-cpp-publisher-with-options ./iox_publisher_with_options.cpp)
30+
target_link_libraries(iox-cpp-publisher-with-options
3131
iceoryx_posh::iceoryx_posh
3232
)
33-
target_compile_options(iox-ex-publisher-with-options PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
33+
target_compile_options(iox-cpp-publisher-with-options PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
3434

35-
add_executable(iox-ex-subscriber-with-options ./iox_subscriber_with_options.cpp)
36-
target_link_libraries(iox-ex-subscriber-with-options
35+
add_executable(iox-cpp-subscriber-with-options ./iox_subscriber_with_options.cpp)
36+
target_link_libraries(iox-cpp-subscriber-with-options
3737
iceoryx_posh::iceoryx_posh
3838
)
39-
target_compile_options(iox-ex-subscriber-with-options PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
39+
target_compile_options(iox-cpp-subscriber-with-options PRIVATE ${ICEORYX_WARNINGS} ${ICEORYX_SANITIZER_FLAGS})
4040

4141

42-
set_target_properties(iox-ex-publisher-with-options iox-ex-subscriber-with-options
42+
set_target_properties(iox-cpp-publisher-with-options iox-cpp-subscriber-with-options
4343
PROPERTIES
4444
CXX_STANDARD_REQUIRED ON
4545
CXX_STANDARD ${ICEORYX_CXX_STANDARD}
@@ -48,5 +48,5 @@ set_target_properties(iox-ex-publisher-with-options iox-ex-subscriber-with-optio
4848

4949
# ========================================================== //
5050

51-
install(TARGETS iox-ex-publisher-with-options iox-ex-subscriber-with-options
51+
install(TARGETS iox-cpp-publisher-with-options iox-cpp-subscriber-with-options
5252
RUNTIME DESTINATION bin)

0 commit comments

Comments
 (0)