Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alarm-handler
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
ds
alarm-handler
Merge requests
!1
Test ci
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Test ci
test_ci
into
master
Overview
0
Commits
25
Pipelines
1
Changes
26
Merged
Graziano Scalamera
requested to merge
test_ci
into
master
3 years ago
Overview
0
Commits
25
Pipelines
1
Changes
26
Expand
Implement cmake build and test with gitlab runner
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
64ded3a6
25 commits,
3 years ago
26 files
+
4518
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
26
Search (e.g. *.vue) (Ctrl+P)
cmake/FindLibraries.cmake
0 → 100644
+
32
−
0
Options
include
(
CMakeParseArguments
)
function
(
find_libraries
)
# Parse the parameters
set
(
MULTIVALUEARGS LIBRARIES SEARCH_PATHS
)
cmake_parse_arguments
(
FIND_LIBRARIES
""
""
"
${
MULTIVALUEARGS
}
"
${
ARGN
}
)
# Clear the found libraries
unset
(
FOUND_LIBRARIES PARENT_SCOPE
)
foreach
(
LIB
${
FIND_LIBRARIES_LIBRARIES
}
)
# try the user provided paths first
find_library
(
FOUND_LIB_
${
LIB
}
${
LIB
}
PATHS
${
FIND_LIBRARIES_SEARCH_PATHS
}
NO_DEFAULT_PATH
)
# if we could not find it, drop to the system paths
if
(
NOT FOUND_LIB_
${
LIB
}
)
find_library
(
FOUND_LIB_
${
LIB
}
${
LIB
}
)
endif
(
NOT FOUND_LIB_
${
LIB
}
)
if
(
FOUND_LIB_
${
LIB
}
)
message
(
STATUS
"Found "
${
LIB
}
" at: "
${
FOUND_LIB_
${
LIB
}}
)
list
(
APPEND FOUND_LIBRARIES
${
FOUND_LIB_
${
LIB
}}
)
else
()
message
(
FATAL
"Could not find "
${
LIB
}
)
endif
(
FOUND_LIB_
${
LIB
}
)
endforeach
(
LIB
${
LIBRARIES
}
)
set
(
FOUND_LIBRARIES
${
FOUND_LIBRARIES
}
PARENT_SCOPE
)
endfunction
(
find_libraries
)
\ No newline at end of file