Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usb_i2c_adapter
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
labrobotica
drivers
usb_i2c_adapter
Commits
6946a288
Commit
6946a288
authored
5 years ago
by
Alejandro Lopez Gestoso
Browse files
Options
Downloads
Patches
Plain Diff
Moved .h files to include folder. Adapted CMakeLists.txt file to this change.
parent
a867b384
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/usb_i2c.h
+0
-0
0 additions, 0 deletions
include/usb_i2c.h
include/usb_i2c_exceptions.h
+0
-0
0 additions, 0 deletions
include/usb_i2c_exceptions.h
src/CMakeLists.txt
+2
-2
2 additions, 2 deletions
src/CMakeLists.txt
with
2 additions
and
2 deletions
src
/usb_i2c.h
→
include
/usb_i2c.h
+
0
−
0
View file @
6946a288
File moved
This diff is collapsed.
Click to expand it.
src
/usb_i2c_exceptions.h
→
include
/usb_i2c_exceptions.h
+
0
−
0
View file @
6946a288
File moved
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
2
−
2
View file @
6946a288
# edit the following line to add all the source code files of the library
# edit the following line to add all the source code files of the library
SET
(
sources usb_i2c.cpp usb_i2c_exceptions.cpp
)
SET
(
sources usb_i2c.cpp usb_i2c_exceptions.cpp
)
# edit the following line to add all the header files of the library
# edit the following line to add all the header files of the library
SET
(
headers
usb_i2c.h
usb_i2c_exceptions.h
)
SET
(
headers
../include/usb_i2c.h ../include/
usb_i2c_exceptions.h
)
# edit the following line to find the necessary packages
# edit the following line to find the necessary packages
FIND_PACKAGE
(
iriutils REQUIRED
)
FIND_PACKAGE
(
iriutils REQUIRED
)
FIND_PACKAGE
(
comm REQUIRED
)
FIND_PACKAGE
(
comm REQUIRED
)
# edit the following line to add the necessary include directories
# edit the following line to add the necessary include directories
INCLUDE_DIRECTORIES
(
.
${
iriutils_INCLUDE_DIR
}
${
comm_INCLUDE_DIR
}
)
INCLUDE_DIRECTORIES
(
.
./include/
${
iriutils_INCLUDE_DIR
}
${
comm_INCLUDE_DIR
}
)
ADD_LIBRARY
(
usb_i2c_adapter SHARED
${
sources
}
)
ADD_LIBRARY
(
usb_i2c_adapter SHARED
${
sources
}
)
...
...
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