Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
Frida
Commits
39f81be2
Commit
39f81be2
authored
9 years ago
by
Wuttke, Joachim
Committed by
Wuttke, Joachim
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
header comment in AssertLibraryFunction.cmake
parent
b6f83004
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pub/cmake/modules/AssertLibraryFunction.cmake
+29
-2
29 additions, 2 deletions
pub/cmake/modules/AssertLibraryFunction.cmake
with
29 additions
and
2 deletions
pub/cmake/modules/AssertLibraryFunction.cmake
+
29
−
2
View file @
39f81be2
...
@@ -2,7 +2,8 @@
...
@@ -2,7 +2,8 @@
# AssertLibraryFunction
# AssertLibraryFunction
# ---------------------
# ---------------------
#
#
# Assert that library contains function, or raise fatal error.
# ASSERT_LIBRARY_FUNCTION checks whether given libraries contain
# a given function. If this is not the case, a fatal error is raised.
#
#
# CHECK_LIBRARY_EXISTS (LIBNAME FUNCTION LOCATION)
# CHECK_LIBRARY_EXISTS (LIBNAME FUNCTION LOCATION)
#
#
...
@@ -10,7 +11,7 @@
...
@@ -10,7 +11,7 @@
#
#
# LIBNAME - library name (case sensitive)
# LIBNAME - library name (case sensitive)
# FUNCTION - name of the function to be searched in ${LIBNAME}_LIBRARIES
# FUNCTION - name of the function to be searched in ${LIBNAME}_LIBRARIES
# LOCATION -
location
where the library should be found
# LOCATION - where the library should be found
(if unsure, use "")
#
#
#
#
# The following variables may be set before calling this macro to modify
# The following variables may be set before calling this macro to modify
...
@@ -22,6 +23,32 @@
...
@@ -22,6 +23,32 @@
# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
# CMAKE_REQUIRED_QUIET = execute quietly without messages
# CMAKE_REQUIRED_QUIET = execute quietly without messages
#
# This function is meant to be used in Find<Package>.cmake modules,
# which in turn should be called through
#
# ::
# find_package(<Package> [QUIET] [REQUIRED])
#
# Within a Find<Package>.cmake module, find_package_handle_standard_args
# must be called before any call of ASSERT_LIBRARY_FUNCTION.
# Typically, Find<Package>.cmake looks like the following:
#
# ::
#
# find_path(<Package>_INCLUDE_DIR <include_file>)
# find_library(<Package>_LIBRARIES NAMES <library_name> <Package>)
#
# include(FindPackageHandleStandardArgs)
# find_package_handle_standard_args(<Package> DEFAULT_MSG <Package>_LIBRARIES <Package>_INCLUDE_DIR)
#
# include(AssertLibraryFunction)
# assert_library_function(<Package> <function_name> "")
#
# mark_as_advanced(<Package>_INCLUDE_DIR <Package>_LIBRARIES)
#
# The result of ASSERT_LIBRARY_FUNCTION is cached in a variable named
# ${LIBNAME}_${FUNCTION}.
#=============================================================================
#=============================================================================
# Based on CheckLibrariesExists (Copyright 2002-2009 Kitware, Inc.)
# Based on CheckLibrariesExists (Copyright 2002-2009 Kitware, Inc.)
...
...
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