Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arm_control
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
humanoides
tv3
arm
arm_control
Commits
f8c987bc
Commit
f8c987bc
authored
4 years ago
by
Sergi Hernandez
Browse files
Options
Downloads
Patches
Plain Diff
Removed the joystick adn bno055 imu dependencies from the C++ driver.
parent
6e5e3876
Branches
ros_version
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/CMakeLists.txt
+0
-4
0 additions, 4 deletions
src/CMakeLists.txt
with
0 additions
and
4 deletions
src/CMakeLists.txt
+
0
−
4
View file @
f8c987bc
...
...
@@ -6,11 +6,9 @@ SET(sources arm_control.cpp)
SET
(
headers ../include/arm_control.h
)
# locate the necessary dependencies
FIND_PACKAGE
(
iriutils REQUIRED
)
FIND_PACKAGE
(
joystick REQUIRED
)
FIND_PACKAGE
(
comm REQUIRED
)
FIND_PACKAGE
(
dynamixel REQUIRED
)
FIND_PACKAGE
(
dynamixel_motor_cont REQUIRED
)
FIND_PACKAGE
(
bno055_imu_driver REQUIRED
)
# add the necessary include directories
INCLUDE_DIRECTORIES
(
../include
)
INCLUDE_DIRECTORIES
(
${
iriutils_INCLUDE_DIR
}
)
...
...
@@ -24,11 +22,9 @@ SET_SOURCE_FILES_PROPERTIES(${XSD_SOURCES} PROPERTIES GENERATED 1)
# create the shared library
ADD_LIBRARY
(
arm_control SHARED
${
sources
}
${
XSD_SOURCES
}
)
TARGET_LINK_LIBRARIES
(
arm_control
${
iriutils_LIBRARY
}
)
TARGET_LINK_LIBRARIES
(
arm_control
${
joystick_LIBRARY
}
)
TARGET_LINK_LIBRARIES
(
arm_control
${
comm_LIBRARY
}
)
TARGET_LINK_LIBRARIES
(
arm_control
${
dynamixel_LIBRARY
}
)
TARGET_LINK_LIBRARIES
(
arm_control
${
dynamixel_motor_cont_LIBRARY
}
)
TARGET_LINK_LIBRARIES
(
arm_control
${
bno055_imu_driver_LIBRARY
}
)
TARGET_LINK_LIBRARIES
(
arm_control
${
XSD_LIBRARY
}
)
#TARGET_LINK_LIBRARIES(arm_control libwiringPi.so)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment