From 6a229b04f614378faf3c73c4bf3319bbe3d61367 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Tue, 27 Feb 2018 13:48:08 +0100 Subject: [PATCH] bindings: cxx: rename the C++ tests executable Include the project's prefix in the executable name. Signed-off-by: Bartosz Golaszewski --- .gitignore | 2 +- bindings/cxx/examples/Makefile.am | 4 ++-- .../cxx/examples/{gpio_cxx_tests.cpp => gpiod_cxx_tests.cpp} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename bindings/cxx/examples/{gpio_cxx_tests.cpp => gpiod_cxx_tests.cpp} (100%) diff --git a/.gitignore b/.gitignore index 08e8c7b..03dd0a5 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ gpioget gpioset gpiomon gpiofind -gpio_cxx_tests +gpiod_cxx_tests gpiodetectcxx gpiofindcxx gpiogetcxx diff --git a/bindings/cxx/examples/Makefile.am b/bindings/cxx/examples/Makefile.am index 4f5ce83..e521137 100644 --- a/bindings/cxx/examples/Makefile.am +++ b/bindings/cxx/examples/Makefile.am @@ -11,7 +11,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/bindings/cxx/ -I$(top_srcdir)/include AM_CPPFLAGS += -Wall -Wextra -g -std=gnu++11 AM_LDFLAGS = -lgpiodcxx -L$(top_builddir)/bindings/cxx/ -check_PROGRAMS = gpio_cxx_tests \ +check_PROGRAMS = gpiod_cxx_tests \ gpiodetectcxx \ gpiofindcxx \ gpiogetcxx \ @@ -19,7 +19,7 @@ check_PROGRAMS = gpio_cxx_tests \ gpiomoncxx \ gpiosetcxx -gpio_cxx_tests_SOURCES = gpio_cxx_tests.cpp +gpiod_cxx_tests_SOURCES = gpiod_cxx_tests.cpp gpiodetectcxx_SOURCES = gpiodetectcxx.cpp diff --git a/bindings/cxx/examples/gpio_cxx_tests.cpp b/bindings/cxx/examples/gpiod_cxx_tests.cpp similarity index 100% rename from bindings/cxx/examples/gpio_cxx_tests.cpp rename to bindings/cxx/examples/gpiod_cxx_tests.cpp -- 2.30.2