From 9fc9e81fc1676215a7fef5b07fee3fa638eda525 Mon Sep 17 00:00:00 2001 From: Jacob Perron Date: Thu, 10 Jun 2021 15:14:20 -0700 Subject: [PATCH] Remove Boost dependency (#235) It wasn't being used so there's no need to depend on it. Signed-off-by: Jacob Perron --- README.md | 3 --- package.xml | 2 -- tests/CMakeLists.txt | 2 +- tests/unix_serial_tests.cc | 2 -- 4 files changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 3f99507..d17f7b1 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,6 @@ Required: * [empy](http://www.alcyone.com/pyos/empy/) - Python templating library * [catkin_pkg](http://pypi.python.org/pypi/catkin_pkg/) - Runtime Python library for catkin -Optional (for tests): -* [Boost](http://www.boost.org/) - Boost C++ librairies - Optional (for documentation): * [Doxygen](http://www.doxygen.org/) - Documentation generation tool * [graphviz](http://www.graphviz.org/) - Graph visualization software diff --git a/package.xml b/package.xml index 27781e1..959f9b8 100644 --- a/package.xml +++ b/package.xml @@ -21,6 +21,4 @@ catkin - boost - diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e52a4d3..ac9a421 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,6 +1,6 @@ if(UNIX) catkin_add_gtest(${PROJECT_NAME}-test unix_serial_tests.cc) - target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME} ${Boost_LIBRARIES}) + target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME}) if(NOT APPLE) target_link_libraries(${PROJECT_NAME}-test util) endif() diff --git a/tests/unix_serial_tests.cc b/tests/unix_serial_tests.cc index 26ffde2..c34868a 100644 --- a/tests/unix_serial_tests.cc +++ b/tests/unix_serial_tests.cc @@ -20,8 +20,6 @@ void loop() #include #include "gtest/gtest.h" -#include - // Use FRIEND_TEST... its not as nasty, thats what friends are for // // OMG this is so nasty... // #define private public