# HG changeset patch # User František Kučera # Date 1606061177 -3600 # Node ID f4fb07ed875322dcc8d7cf91b743d7e4b4989243 # Parent 5be268bc4c698b4493b1bc0f39b7a04c9a42eb5d relpipe-in-initable is fork of relpipe-in-xmltable These alternative relpipe-in-*table modules are just temporary, parser code for particular formats will be moved to alt2xml and used as shared library from relpipe-in-xmltable and relpipe-in-initable relpipe-in-yamltable etc. will be just symlinks to relpipe-in-xmltable executable. diff -r 5be268bc4c69 -r f4fb07ed8753 CMakeLists.txt --- a/CMakeLists.txt Sun Oct 25 21:48:11 2020 +0100 +++ b/CMakeLists.txt Sun Nov 22 17:06:17 2020 +0100 @@ -13,6 +13,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -project (relpipe-in-xmltable.cpp) +project (relpipe-in-initable.cpp) cmake_minimum_required(VERSION 3.7.2) add_subdirectory (src) diff -r 5be268bc4c69 -r f4fb07ed8753 bash-completion.sh --- a/bash-completion.sh Sun Oct 25 21:48:11 2020 +0100 +++ b/bash-completion.sh Sun Nov 22 17:06:17 2020 +0100 @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -_relpipe_in_xmltable_completion() { +_relpipe_in_initable_completion() { local w0 w1 w2 w3 COMPREPLY=() @@ -92,4 +92,4 @@ fi } -complete -F _relpipe_in_xmltable_completion relpipe-in-xmltable +complete -F _relpipe_in_initable_completion relpipe-in-initable diff -r 5be268bc4c69 -r f4fb07ed8753 nbproject/configurations.xml --- a/nbproject/configurations.xml Sun Oct 25 21:48:11 2020 +0100 +++ b/nbproject/configurations.xml Sun Nov 22 17:06:17 2020 +0100 @@ -77,10 +77,11 @@ build/Debug ${MAKE} -f Makefile ${MAKE} -f Makefile clean - build/Debug/src/relpipe-in-xmltable + build/Debug/src/relpipe-in-initable ../relpipe-lib-writer.cpp/include + ../relpipe-lib-common.cpp/include ../relpipe-lib-cli.cpp/include /usr/include/libxml++-2.6 /usr/lib/x86_64-linux-gnu/libxml++-2.6/include @@ -101,8 +102,6 @@ true - - diff -r 5be268bc4c69 -r f4fb07ed8753 nbproject/project.xml --- a/nbproject/project.xml Sun Oct 25 21:48:11 2020 +0100 +++ b/nbproject/project.xml Sun Nov 22 17:06:17 2020 +0100 @@ -3,7 +3,7 @@ org.netbeans.modules.cnd.makeproject - relpipe-in-xmltable.cpp + relpipe-in-initable.cpp cpp h diff -r 5be268bc4c69 -r f4fb07ed8753 src/CMakeLists.txt --- a/src/CMakeLists.txt Sun Oct 25 21:48:11 2020 +0100 +++ b/src/CMakeLists.txt Sun Nov 22 17:06:17 2020 +0100 @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -set(EXECUTABLE_FILE "relpipe-in-xmltable") +set(EXECUTABLE_FILE "relpipe-in-initable") # Relpipe libraries: INCLUDE(FindPkgConfig)