Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
find_package( Boost COMPONENTS thread system filesystem regex)
find_package( Backward REQUIRED)
rock_library(orocos_cpp
SOURCES
ConfigurationHelper.cpp
Expand Down Expand Up @@ -38,9 +39,12 @@ rock_library(orocos_cpp
typelib
lib_config
base-logging
backward
DEPS
Boost::system Boost::filesystem Boost::regex Boost::thread
Boost::system
Boost::filesystem
Boost::regex
Boost::thread
Backward::Interface
)

rock_executable(listAll Main.cpp
Expand Down
2 changes: 1 addition & 1 deletion src/Spawner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "CorbaNameService.hpp"
#include <lib_config/Bundle.hpp>
#include <signal.h>
#include <backward/backward.hpp>
#include <backward.hpp>
#include <rtt/transports/corba/TaskContextProxy.hpp>
#include <base-logging/Logging.hpp>

Expand Down