Skip to content

Commit 02963b7

Browse files
Mani-Sadhasivamarfoll
authored andcommitted
tools: remove INSTALLGPIOTOOL flag
This commit removes INSTALLGPIOTOOL flag as it is not required anymore Signed-off-by: Manivannan Sadhasivam <[email protected]> Signed-off-by: Brendan Le Foll <[email protected]>
1 parent ec26f92 commit 02963b7

File tree

5 files changed

+0
-8
lines changed

5 files changed

+0
-8
lines changed

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ option (FTDI4222 "Build with FTDI FT4222 subplatform support." OFF)
137137
option (IPK "Generate IPK using CPack" OFF)
138138
option (RPM "Generate RPM using CPack" OFF)
139139
option (ENABLEEXAMPLES "Disable building of examples" ON)
140-
option (INSTALLGPIOTOOL "Install gpio tool" OFF)
141140
option (INSTALLTOOLS "Install all tools" ON)
142141
option (BUILDTESTS "Override the addition of tests" ON)
143142
option (USEPYTHON3TESTS "Force tests to run with python3" OFF)

docker-compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ services:
2424
- IPK=${IPK:-OFF}
2525
- RPM=${RPM:-OFF}
2626
- ENABLEEXAMPLES=${ENABLEEXAMPLES:-OFF}
27-
- INSTALLGPIOTOOL=${INSTALLGPIOTOOL:-OFF}
2827
- INSTALLTOOLS=${INSTALLTOOLS:-ON}
2928
- CC=${CC:-clang-3.8}
3029
- CXX=${CXX:-clang++-3.8}

scripts/build-android.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ cmake \
7575
-DIPK=$IPK \
7676
-DRPM=$RPM \
7777
-DENABLEEXAMPLES=$ENABLEEXAMPLES \
78-
-DINSTALLGPIOTOOL=$INSTALLGPIOTOOL \
7978
-DINSTALLTOOLS=$INSTALLTOOLS \
8079
-DBUILDTESTS=$BUILDTESTS \
8180
-DUSEPYTHON3TESTS=$USEPYTHON3TESTS \

scripts/run-cmake.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ cmake \
2020
-DIPK=$IPK \
2121
-DRPM=$RPM \
2222
-DENABLEEXAMPLES=$ENABLEEXAMPLES \
23-
-DINSTALLGPIOTOOL=$INSTALLGPIOTOOL \
2423
-DINSTALLTOOLS=$INSTALLTOOLS \
2524
-DBUILDTESTS=$BUILDTESTS \
2625
-DUSEPYTHON3TESTS=$USEPYTHON3TESTS \

tools/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ target_link_libraries (mraa-gpio mraa)
1111
target_link_libraries (mraa-i2c mraa)
1212
target_link_libraries (mraa-uart mraa)
1313

14-
if (INSTALLGPIOTOOL AND NOT INSTALLTOOLS)
15-
install (TARGETS mraa-gpio DESTINATION bin)
16-
endif()
17-
1814
if (INSTALLTOOLS)
1915
install (TARGETS mraa-gpio DESTINATION bin)
2016
install (TARGETS mraa-i2c DESTINATION bin)

0 commit comments

Comments
 (0)