Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
mobile_robotics
wolf_projects
wolf_lib
wolf
Commits
cda40881
There was a problem fetching the pipeline metadata.
Commit
cda40881
authored
7 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Remove dependency of gtest_problem on OpenCV
parent
112da271
No related branches found
No related tags found
1 merge request
!152
Fix OpenCV dependencies in gtest_problem
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/CMakeLists.txt
+4
-4
4 additions, 4 deletions
src/test/CMakeLists.txt
with
4 additions
and
4 deletions
src/test/CMakeLists.txt
+
4
−
4
View file @
cda40881
...
@@ -72,6 +72,10 @@ target_link_libraries(gtest_local_param ${PROJECT_NAME})
...
@@ -72,6 +72,10 @@ target_link_libraries(gtest_local_param ${PROJECT_NAME})
wolf_add_gtest
(
gtest_motion_buffer gtest_motion_buffer.cpp
)
wolf_add_gtest
(
gtest_motion_buffer gtest_motion_buffer.cpp
)
target_link_libraries
(
gtest_motion_buffer
${
PROJECT_NAME
}
)
target_link_libraries
(
gtest_motion_buffer
${
PROJECT_NAME
}
)
# Problem class test
wolf_add_gtest
(
gtest_problem gtest_problem.cpp
)
target_link_libraries
(
gtest_problem
${
PROJECT_NAME
}
)
# ProcessorMotion class test
# ProcessorMotion class test
wolf_add_gtest
(
gtest_processor_motion gtest_processor_motion.cpp
)
wolf_add_gtest
(
gtest_processor_motion gtest_processor_motion.cpp
)
target_link_libraries
(
gtest_processor_motion
${
PROJECT_NAME
}
)
target_link_libraries
(
gtest_processor_motion
${
PROJECT_NAME
}
)
...
@@ -144,10 +148,6 @@ target_link_libraries(gtest_constraint_autodiff ${PROJECT_NAME})
...
@@ -144,10 +148,6 @@ target_link_libraries(gtest_constraint_autodiff ${PROJECT_NAME})
# ROI test
# ROI test
IF
(
OpenCV_FOUND
)
IF
(
OpenCV_FOUND
)
# Problem class test
wolf_add_gtest
(
gtest_problem gtest_problem.cpp
)
target_link_libraries
(
gtest_problem
${
PROJECT_NAME
}
)
wolf_add_gtest
(
gtest_roi_ORB gtest_roi_ORB.cpp
)
wolf_add_gtest
(
gtest_roi_ORB gtest_roi_ORB.cpp
)
target_link_libraries
(
gtest_roi_ORB
${
PROJECT_NAME
}
)
target_link_libraries
(
gtest_roi_ORB
${
PROJECT_NAME
}
)
ENDIF
(
OpenCV_FOUND
)
ENDIF
(
OpenCV_FOUND
)
...
...
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