Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vision
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
plugins
vision
Commits
42d4cccf
Commit
42d4cccf
authored
3 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Remove indirect dependencies
parent
12eaa241
No related branches found
No related tags found
1 merge request
!24
After 2nd RAL submission
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+0
-1
0 additions, 1 deletion
CMakeLists.txt
test/CMakeLists.txt
+7
-7
7 additions, 7 deletions
test/CMakeLists.txt
with
7 additions
and
8 deletions
CMakeLists.txt
+
0
−
1
View file @
42d4cccf
...
...
@@ -102,7 +102,6 @@ ENDIF(BUILD_EXAMPLES OR BUILD_TESTS)
FIND_PACKAGE
(
wolfcore REQUIRED
)
FIND_PACKAGE
(
vision_utils REQUIRED
)
MESSAGE
(
"vision_utils Library FOUND: vision related sources will be built."
)
SET
(
PRINT_INFO_VU false
)
FIND_PACKAGE
(
OpenCV REQUIRED
)
...
...
This diff is collapsed.
Click to expand it.
test/CMakeLists.txt
+
7
−
7
View file @
42d4cccf
...
...
@@ -15,27 +15,27 @@ target_link_libraries(gtest_example ${PLUGIN_NAME}) #
# Pinhole test
wolf_add_gtest
(
gtest_pinhole gtest_pinhole.cpp
)
target_link_libraries
(
gtest_pinhole
${
PLUGIN_NAME
}
${
wolf_LIBRARY
}
)
target_link_libraries
(
gtest_pinhole
${
PLUGIN_NAME
}
)
wolf_add_gtest
(
gtest_sensor_camera gtest_sensor_camera.cpp
)
target_link_libraries
(
gtest_sensor_camera
${
PLUGIN_NAME
}
${
wolf_LIBRARY
}
${
OpenCV_LIBS
}
${
vision_utils_LIBRARY
}
)
target_link_libraries
(
gtest_sensor_camera
${
PLUGIN_NAME
}
)
# FactorTrifocal test
wolf_add_gtest
(
gtest_factor_trifocal gtest_factor_trifocal.cpp
)
target_link_libraries
(
gtest_factor_trifocal
${
PLUGIN_NAME
}
${
wolf_LIBRARY
}
${
OpenCV_LIBS
}
${
vision_utils_LIBRARY
}
)
target_link_libraries
(
gtest_factor_trifocal
${
PLUGIN_NAME
}
)
# FactorFeatureEpipolar test
wolf_add_gtest
(
gtest_factor_epipolar gtest_factor_epipolar.cpp
)
target_link_libraries
(
gtest_factor_epipolar
${
PLUGIN_NAME
}
${
wolf_LIBRARY
}
${
OpenCV_LIBS
}
${
vision_utils_LIBRARY
}
)
target_link_libraries
(
gtest_factor_epipolar
${
PLUGIN_NAME
}
)
# ProcessorFeatureTrifocal test
wolf_add_gtest
(
gtest_processor_tracker_feature_trifocal gtest_processor_tracker_feature_trifocal.cpp
)
target_link_libraries
(
gtest_processor_tracker_feature_trifocal
${
PLUGIN_NAME
}
${
wolf_LIBRARY
}
${
OpenCV_LIBS
}
${
vision_utils_LIBRARY
}
)
target_link_libraries
(
gtest_processor_tracker_feature_trifocal
${
PLUGIN_NAME
}
)
# ProcessorBundleAdjustment test
wolf_add_gtest
(
gtest_processor_bundle_adjustment gtest_processor_bundle_adjustment.cpp
)
target_link_libraries
(
gtest_processor_bundle_adjustment
${
PLUGIN_NAME
}
${
wolf_LIBRARY
}
${
OpenCV_LIBS
}
${
vision_utils_LIBRARY
}
)
target_link_libraries
(
gtest_processor_bundle_adjustment
${
PLUGIN_NAME
}
)
# FactorPixelHp test
wolf_add_gtest
(
gtest_factor_pixel_hp gtest_factor_pixel_hp.cpp
)
target_link_libraries
(
gtest_factor_pixel_hp
${
PLUGIN_NAME
}
${
wolf_LIBRARY
}
${
OpenCV_LIBS
}
${
vision_utils_LIBRARY
}
)
target_link_libraries
(
gtest_factor_pixel_hp
${
PLUGIN_NAME
}
)
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