Skip to content

Commit 43c2f2d

Browse files
committed
suffix v3 removed
1 parent 84422ff commit 43c2f2d

File tree

149 files changed

+211
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+211
-218
lines changed

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ jobs:
4848
- name: run test (Linux)
4949
if: matrix.os == 'ubuntu-latest'
5050
working-directory: ${{github.workspace}}/build
51-
run: ./tests/behaviortree_cpp_v3_test
51+
run: ./tests/behaviortree_cpp_test
5252

.github/workflows/ros1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
- uses: 'ros-industrial/industrial_ci@master'
1616
env: ${{matrix.env}}
1717
with:
18-
package-name: behaviortree_cpp_v3
18+
package-name: behaviortree_cpp

.github/workflows/ros2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- uses: 'ros-industrial/industrial_ci@master'
1818
env: ${{matrix.env}}
1919
with:
20-
package-name: behaviortree_cpp_v3
20+
package-name: behaviortree_cpp

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10.2) # version on Ubuntu Bionic
2-
project(behaviortree_cpp_v3)
2+
project(behaviortree_cpp)
33

44
#---- Add the subdirectory cmake ----
55
set(CMAKE_CONFIG_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_LIST_DIR}/cmake")

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,23 +109,23 @@ If you want to use BT.CPp in your application a typical **CMakeLists.txt** file
109109
will look like this:
110110

111111
```cmake
112-
cmake_minimum_required(VERSION 3.5)
112+
cmake_minimum_required(VERSION 3.10.2)
113113
114114
project(hello_BT)
115115
116-
set(CMAKE_CXX_STANDARD 14)
116+
set(CMAKE_CXX_STANDARD 17)
117117
set(CMAKE_CXX_STANDARD_REQUIRED ON)
118-
find_package(behaviortree_cpp_v3)
118+
find_package(behaviortree_cpp)
119119
120120
add_executable(${PROJECT_NAME} "hello_BT.cpp")
121-
target_link_libraries(${PROJECT_NAME} BT::behaviortree_cpp_v3)
121+
target_link_libraries(${PROJECT_NAME} BT::behaviortree_cpp)
122122
```
123123

124124
## ROS1 or ROS2 users (Catkin/Ament)
125125

126126
You can easily install the package with the command
127127

128-
sudo apt-get install ros-$ROS_DISTRO-behaviortree-cpp-v3
128+
sudo apt-get install ros-$ROS_DISTRO-behaviortree-cpp-v4
129129
130130
If you want to compile it with catkin, you __must__ include this package
131131
to your catkin workspace.

examples/broken_sequence.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "Blackboard/blackboard_local.h"
2-
#include "behaviortree_cpp_v3/behavior_tree.h"
3-
#include "behaviortree_cpp_v3/bt_factory.h"
2+
#include "behaviortree_cpp/behavior_tree.h"
3+
#include "behaviortree_cpp/bt_factory.h"
44

55
using namespace BT;
66

examples/ex01_wrap_legacy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include "behaviortree_cpp_v3/bt_factory.h"
2-
#include "behaviortree_cpp_v3/loggers/bt_cout_logger.h"
1+
#include "behaviortree_cpp/bt_factory.h"
2+
#include "behaviortree_cpp/loggers/bt_cout_logger.h"
33

44
/** In this tutorial we will see how to wrap legacy code into a
55
* BehaviorTree in a non-intrusive way, i.e. without modifying the

examples/ex02_runtime_ports.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "behaviortree_cpp_v3/bt_factory.h"
1+
#include "behaviortree_cpp/bt_factory.h"
22
using namespace BT;
33

44
// clang-format off

examples/ex03_ncurses_manual_selector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "behaviortree_cpp_v3/bt_factory.h"
1+
#include "behaviortree_cpp/bt_factory.h"
22
#include "dummy_nodes.h"
33

44
using namespace BT;

examples/ex04_waypoints.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "behaviortree_cpp_v3/bt_factory.h"
2-
#include "behaviortree_cpp_v3/actions/pop_from_queue.hpp"
3-
#include "behaviortree_cpp_v3/decorators/consume_queue.h"
1+
#include "behaviortree_cpp/bt_factory.h"
2+
#include "behaviortree_cpp/actions/pop_from_queue.hpp"
3+
#include "behaviortree_cpp/decorators/consume_queue.h"
44
#include <list>
55

66
using namespace BT;

0 commit comments

Comments
 (0)