Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cmake-library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
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
cmake
cmake-library
Merge requests
!20
Fix FindCoinUtils.cmake
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix FindCoinUtils.cmake
fix-coinutils
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Martin Heistermann
requested to merge
fix-coinutils
into
master
2 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
ff9a1c52
1 commit,
2 months ago
1 file
+
3
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
finders/FindCoinUtils.cmake
+
3
−
2
Options
@@ -29,6 +29,9 @@ find_library( CoinUtils_LIBRARY
mark_as_advanced
(
CoinUtils_INCLUDE_DIR CoinUtils_LIBRARY
)
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
CoinUtils DEFAULT_MSG CoinUtils_INCLUDE_DIR CoinUtils_LIBRARY
)
if
(
CoinUtils_FOUND
)
add_library
(
Coin::CoinUtils SHARED IMPORTED
)
set_property
(
TARGET Coin::CoinUtils PROPERTY IMPORTED_LOCATION
${
CoinUtils_LIBRARY
}
)
@@ -36,7 +39,5 @@ if(CoinUtils_FOUND)
set
(
CoinUtils_LIBRARIES
"Coin::CoinUtils"
)
endif
()
include
(
FindPackageHandleStandardArgs
)
find_package_handle_standard_args
(
CoinUtils DEFAULT_MSG CoinUtils_LIBRARIES
)
endif
(
NOT TARGET Coin::CoinUtils
)
Loading