Skip to content

Commit

Permalink
launchManipulation and launchLocomotion switched to TwoCanBusThreeWra…
Browse files Browse the repository at this point in the history
…ppers
  • Loading branch information
jgvictores committed Jul 3, 2015
1 parent 350e800 commit efb9593
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion programs/launchLocomotion/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ link_directories(${TEO_BODY_LINK_DIRS})
# Set up our main executable.
if (folder_source)
add_executable(${KEYWORD} ${folder_source} ${folder_header})
target_link_libraries(${KEYWORD} ${YARP_LIBRARIES} BodyYarp)
target_link_libraries(${KEYWORD} ${YARP_LIBRARIES} ${TEO_BODY_LIBRARIES} BodyYarp)
install(TARGETS ${KEYWORD} DESTINATION bin)
else (folder_source)
message(FATAL_ERROR "No source code files found. Please add something")
Expand Down
6 changes: 3 additions & 3 deletions programs/launchLocomotion/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @ingroup teo_body_programs
* \defgroup launchLocomotion launchLocomotion
*
* @brief Creates an instance of teo::LaunchLocomotion.
* @brief Creates an instance of teo::TwoCanBusThreeWrappers.
*
* @section launchLocomotion_legal Legal
*
Expand Down Expand Up @@ -38,7 +38,7 @@
*
*/

#include "LaunchLocomotion.hpp"
#include "TwoCanBusThreeWrappers.hpp"

using namespace yarp::os;
using namespace yarp::dev;
Expand All @@ -63,7 +63,7 @@ int main(int argc, char *argv[]) {
}
CD_SUCCESS("Found yarp network.\n");

teo::LaunchLocomotion mod;
teo::TwoCanBusThreeWrappers mod;
return mod.runModule(rf);
}

2 changes: 1 addition & 1 deletion programs/launchManipulation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ link_directories(${TEO_BODY_LINK_DIRS})
# Set up our main executable.
if (folder_source)
add_executable(${KEYWORD} ${folder_source} ${folder_header})
target_link_libraries(${KEYWORD} ${YARP_LIBRARIES} BodyYarp)
target_link_libraries(${KEYWORD} ${YARP_LIBRARIES} ${TEO_BODY_LIBRARIES} BodyYarp)
install(TARGETS ${KEYWORD} DESTINATION bin)
else (folder_source)
message(FATAL_ERROR "No source code files found. Please add something")
Expand Down
6 changes: 3 additions & 3 deletions programs/launchManipulation/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @ingroup teo_body_programs
* \defgroup launchManipulation launchManipulation
*
* @brief Creates an instance of teo::LaunchManipulation.
* @brief Creates an instance of teo::TwoCanBusThreeWrappers.
*
* @section launchManipulation_legal Legal
*
Expand Down Expand Up @@ -38,7 +38,7 @@
*
*/

#include "LaunchManipulation.hpp"
#include "TwoCanBusThreeWrappers.hpp"

using namespace yarp::os;
using namespace yarp::dev;
Expand All @@ -63,7 +63,7 @@ int main(int argc, char *argv[]) {
}
CD_SUCCESS("Found yarp network.\n");

teo::LaunchManipulation mod;
teo::TwoCanBusThreeWrappers mod;
return mod.runModule(rf);
}

0 comments on commit efb9593

Please sign in to comment.