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
Compare revisions
a844727186ea4251e4f59d7a98b0f27c111df5c5 to e0a04b21720352a874d4add0495bb505f9d7761a
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cmake/cmake-library
Select target project
No results found
e0a04b21720352a874d4add0495bb505f9d7761a
Select Git revision
Branches
LPSolverFinder
add-finder/mpfr
changes_from_cgg_github
dev/mh/lpsolve
master
5 results
Swap
Target
cmake/cmake-library
Select target project
cmake/cmake-library
1 result
a844727186ea4251e4f59d7a98b0f27c111df5c5
Select Git revision
Branches
LPSolverFinder
add-finder/mpfr
changes_from_cgg_github
dev/mh/lpsolve
master
5 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Fix FindCoinUtils.cmake
· ff9a1c52
Martin Heistermann
authored
1 month ago
ff9a1c52
Merge branch 'fix-coinutils' into 'master'
· e0a04b21
Jan Möbius
authored
1 month ago
Fix FindCoinUtils.cmake See merge request
!20
e0a04b21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
finders/FindCoinUtils.cmake
+3
-2
3 additions, 2 deletions
finders/FindCoinUtils.cmake
with
3 additions
and
2 deletions
finders/FindCoinUtils.cmake
View file @
e0a04b21
...
...
@@ -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
)
This diff is collapsed.
Click to expand it.