Skip to content

Commit a83b7dd

Browse files
committed
Changing the utility name to be all lowercase
1 parent e619031 commit a83b7dd

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
cmake_minimum_required(VERSION 3.5)
14-
project("RTIXMLOutputUtility")
14+
project("rtixmloutpututility")
1515

1616
if(NOT CONNEXTDDS_DIR)
1717
set(msg "Please provide the top level folder location for your Connext DDS installation. "
@@ -63,17 +63,17 @@ find_library(rtixml2_library
6363
PATHS "${CONNEXTDDS_DIR}/lib/${CONNEXTDDS_ARCH}/"
6464
)
6565

66-
# Create the executable for RTIXMLOutputUtility
67-
add_executable(RTIXMLOutputUtility
66+
# Create the executable for rtixmloutpututility
67+
add_executable(rtixmloutpututility
6868
${RTIXMLOUTPUTUTILITY_C_SOURCES}
6969
)
7070

71-
target_link_libraries(RTIXMLOutputUtility
71+
target_link_libraries(rtixmloutpututility
7272
RTIConnextDDS::c_api
7373
${rtixml2_library}
7474
${CONNEXTDDS_EXTERNAL_LIBS}
7575
)
7676

77-
target_include_directories(RTIXMLOutputUtility
77+
target_include_directories(rtixmloutpututility
7878
PUBLIC
7979
"${CMAKE_CURRENT_SOURCE_DIR}/src")

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Here are the various options for this utility
4141
| profilePath | Fully qualified path of a QoS Profile. For example: QoSLibraryName::QoSProfileName | OPTIONAL: The ``` <qos_profile>``` with ``` is_default_qos="true" ``` will be selected OR the default values will be returned for the -qosTag |
4242
| qosTag | XML tag name who QoS values you want to be fetched. You can also select a subtag by separating it with a '/'. For example: ``` datawriter_qos/history ``` or ``` participant_qos/property ``` | REQUIRED: Allowed values = {datawriter_qos, datareader_qos, topic_qos, participant_qos, publisher_qos, subscriber_qos} |
4343
| topicName | Can be used with -qosTag = {datawriter_qos, datareader_qos, topic_qos} | OPTIONAL: The default value used with these types will be NULL |
44-
| help | Displays all the options of the RTIXMLOutputUtility | OPTIONAL |
44+
| help | Displays all the options of the rtixmloutpututility | OPTIONAL |
4545

4646
You should also add the the location of the ``` lib ``` folder to your PATH (Windows) or DYLD_LIBRARY_PATH (Mac) or LD_LIBRARY_PATH (Linux) if you compiled the utility using ``` -DBUILD_SHARED_LIBS=1 ```
4747

@@ -59,7 +59,7 @@ set PATH=<RTI Connext DDS installation folder>/lib/<architecture>;%PATH%
5959
## Example
6060
Here is a sample usage of the utility on a Linux machine
6161
```
62-
$ ./RTIXMLOutputUtility
62+
$ ./rtixmloutpututility
6363
-qosFile '/home/xxx/Documents/Tests/CORE-9446/USER_QOS_PROFILES.xml;/home/xxx/Documents/Tests/CORE-1375/USER_QOS_PROFILES.xml'
6464
-profilePath Data_Library::Data_Profile
6565
-qosTag participant_qos/property
@@ -91,7 +91,7 @@ QoS file names detected are:
9191
</element>
9292
<element>
9393
<name>dds.sys_info.executable_filepath</name>
94-
<value>/home/xxx/Documents/Tests/RTI_XMLOutputUtility/build/RTIXMLOutputUtility</value>
94+
<value>/home/xxx/Documents/Tests/RTI_XMLOutputUtility/build/rtixmloutpututility</value>
9595
</element>
9696
<element>
9797
<name>dds.sys_info.target</name>

src/CommandLineArgumentParser.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
const char *RTI_CMD_ARG_HELP[RTI_CMD_ARG_INFO_ARRAY_SIZE] = {
1919
"-help",
20-
"\t Displays all the options of the RTIXMLOutputUtility",
20+
"\t Displays all the options of the rtixmloutpututility",
2121
""};
2222
const char *RTI_CMD_ARG_QOS_FILE[RTI_CMD_ARG_INFO_ARRAY_SIZE] = {
2323
"-qosFile",
@@ -54,10 +54,10 @@ const char *RTI_CMD_ARG_TOPIC_NAME[RTI_CMD_ARG_INFO_ARRAY_SIZE] = {
5454

5555
void RTI_CommandLineArgumentParser_print_help()
5656
{
57-
printf("RTIXMLOutputUtility - A tool to visualize the final XML values provided by a Qos Profile \n"
57+
printf("rtixmloutpututility - A tool to visualize the final XML values provided by a QoS Profile \n"
5858
"(c) 2019 Copyright, Real-Time Innovations, Inc \n\n");
5959
printf("Usage: %s [-OPTION] [VALUE] \n\n",
60-
"[./]RTIXMLOutputUtility[.exe]");
60+
"[./]rtixmloutpututility[.exe]");
6161
printf("Options: \n");
6262
printf("%s \t %s \n \t\t %s \n\n", RTI_CMD_ARG_QOS_FILE[0], RTI_CMD_ARG_QOS_FILE[1], RTI_CMD_ARG_QOS_FILE[2]);
6363
printf("%s \t %s \n \t\t %s \n\n", RTI_CMD_ARG_OUTPUT_FILE[0], RTI_CMD_ARG_OUTPUT_FILE[1], RTI_CMD_ARG_OUTPUT_FILE[2]);
@@ -304,7 +304,7 @@ DDS_Boolean RTI_CommandLineArgumentParser_parse_arguments(
304304
goto done;
305305
}
306306
} else {
307-
printf("Unknown option '%s'. Please run RTIXMLOutputUtility with the %s option "
307+
printf("Unknown option '%s'. Please run rtixmloutpututility with the %s option "
308308
"to see the valid list of options. \n\n",
309309
argv[i],
310310
RTI_CMD_ARG_HELP[0]);

0 commit comments

Comments
 (0)