File tree Expand file tree Collapse file tree 5 files changed +0
-30
lines changed Expand file tree Collapse file tree 5 files changed +0
-30
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ endif()
26
26
27
27
#---- project configuration ----
28
28
option (BTCPP_SHARED_LIBS "Build shared libraries" ON )
29
- option (BTCPP_MANUAL_SELECTOR "Build manual selector node" OFF )
30
29
option (BTCPP_BUILD_TOOLS "Build commandline tools" ON )
31
30
option (BTCPP_EXAMPLES "Build tutorials and examples" ON )
32
31
option (BTCPP_UNIT_TESTS "Build the unit tests" ON )
@@ -123,16 +122,6 @@ list(APPEND BT_SOURCE
123
122
3rdparty/minitrace/minitrace.cpp
124
123
)
125
124
126
- if (BTCPP_MANUAL_SELECTOR )
127
- find_package (Curses QUIET )
128
- if (CURSES_FOUND )
129
- message (STATUS "NCurses: found." )
130
- list (APPEND BT_SOURCE src/controls/manual_node.cpp )
131
- else ()
132
- message (WARNING "NCurses NOT found. Skipping the build of manual selector node." )
133
- endif ()
134
- endif ()
135
-
136
125
137
126
######################################################
138
127
@@ -172,15 +161,6 @@ target_include_directories(${BTCPP_LIBRARY}
172
161
${BTCPP_EXTRA_INCLUDE_DIRS}
173
162
)
174
163
175
- if (CURSES_FOUND )
176
- target_link_libraries (${BTCPP_LIBRARY} PRIVATE
177
- ${CURSES_LIBRARIES} )
178
- target_include_directories (${BTCPP_LIBRARY} PRIVATE
179
- ${CURSES_INCLUDE_DIRS} )
180
- target_compile_definitions (${BTCPP_LIBRARY} PRIVATE NCURSES_FOUND )
181
- endif ()
182
-
183
-
184
164
target_compile_definitions (${BTCPP_LIBRARY} PRIVATE $< $< CONFIG:Debug> :TINYXML2_DEBUG> )
185
165
186
166
if (MSVC )
Original file line number Diff line number Diff line change @@ -31,9 +31,4 @@ CompileExample("t12_groot_howto")
31
31
32
32
CompileExample ("ex01_wrap_legacy" )
33
33
CompileExample ("ex02_runtime_ports" )
34
-
35
- if (BTCPP_MANUAL_SELECTOR )
36
- CompileExample ("ex03_ncurses_manual_selector" )
37
- endif ()
38
-
39
34
CompileExample ("ex04_waypoints" )
Original file line number Diff line number Diff line change 20
20
#include " behaviortree_cpp/controls/sequence_node.h"
21
21
#include " behaviortree_cpp/controls/sequence_star_node.h"
22
22
#include " behaviortree_cpp/controls/switch_node.h"
23
- #include " behaviortree_cpp/controls/manual_node.h"
24
23
#include " behaviortree_cpp/controls/if_then_else_node.h"
25
24
#include " behaviortree_cpp/controls/while_do_else_node.h"
26
25
Original file line number Diff line number Diff line change 23
23
24
24
<depend >libsqlite3-dev</depend >
25
25
<depend >libzmq3-dev</depend >
26
- <depend >libncurses-dev</depend >
27
26
28
27
<test_depend condition =" $ROS_VERSION == 2" >ament_cmake_gtest</test_depend >
29
28
Original file line number Diff line number Diff line change @@ -67,9 +67,6 @@ BehaviorTreeFactory::BehaviorTreeFactory()
67
67
registerNodeType<SwitchNode<5 >>(" Switch5" );
68
68
registerNodeType<SwitchNode<6 >>(" Switch6" );
69
69
70
- #ifdef NCURSES_FOUND
71
- registerNodeType<ManualSelectorNode>(" ManualSelector" );
72
- #endif
73
70
for (const auto & it : builders_)
74
71
{
75
72
builtin_IDs_.insert (it.first );
You can’t perform that action at this time.
0 commit comments