feat: add version parameter to xml2cpp codegen tool (#463)

* Added -v, --version xml2cpp command line tool options

* Update tools/xml2cpp-codegen/xml2cpp.cpp

Co-authored-by: Stanislav Angelovič <stanislav.angelovic@protonmail.com>

* Updated tools/CMakeLists.txt

---------

Co-authored-by: Stanislav Angelovič <stanislav.angelovic@protonmail.com>
This commit is contained in:
Brian
2024-11-20 19:54:49 +01:00
committed by GitHub
parent 84130b1406
commit 8a117f8b42
2 changed files with 7 additions and 0 deletions

View File

@@ -44,6 +44,7 @@ set(CMAKE_CXX_STANDARD 14)
add_executable(sdbus-c++-xml2cpp ${SDBUSCPP_XML2CPP_SRCS})
target_link_libraries (sdbus-c++-xml2cpp ${EXPAT_LIBRARIES})
target_include_directories(sdbus-c++-xml2cpp PRIVATE ${EXPAT_INCLUDE_DIRS})
target_compile_definitions(sdbus-c++-xml2cpp PRIVATE SDBUS_XML2CPP_VERSION="${CMAKE_PROJECT_VERSION}")
#----------------------------------
# CMAKE CONFIG & PACKAGE CONFIG

View File

@@ -51,6 +51,7 @@ void usage(std::ostream& output, const char* programName)
" --adaptor=FILE Generate header file FILE with stub class (server)" << endl <<
" -h, --help " << endl <<
" --verbose Explain what is being done" << endl <<
" -v, --version Prints out sdbus-c++ version used by the tool" << endl <<
endl <<
"The stub generator takes an XML file describing DBus interface and creates" << endl <<
"C++ header files to be used by C++ code wanting to cumminicate through that" << endl <<
@@ -104,6 +105,11 @@ int main(int argc, char **argv)
usage(std::cout, programName);
return 0;
}
else if (!strcmp(*argv, "--version") || !strcmp(*argv, "-v"))
{
std::cout << "Version: " << SDBUS_XML2CPP_VERSION << std::endl;
return 0;
}
else if (!strcmp(*argv, "--verbose"))
{
verbose = true;