Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bryon Bean
CMake
Commits
f618142f
Commit
f618142f
authored
7 years ago
by
Brad King
Browse files
Options
Downloads
Plain Diff
Merge branch 'FindXMLRPC-no-includes' into release-3.10
Merge-request: !1377
parents
609a6fe9
e7720a0f
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
Modules/FindXMLRPC.cmake
+14
-29
14 additions, 29 deletions
Modules/FindXMLRPC.cmake
with
14 additions
and
29 deletions
Modules/FindXMLRPC.cmake
+
14
−
29
View file @
f618142f
...
...
@@ -43,20 +43,12 @@ endif()
# Lookup the include directories needed for the components requested.
if
(
XMLRPC_C_FOUND
)
# Use the newer EXECUTE_PROCESS command if it is available.
if
(
COMMAND EXECUTE_PROCESS
)
execute_process
(
COMMAND
${
XMLRPC_C_CONFIG
}
${
XMLRPC_FIND_COMPONENTS
}
--cflags
OUTPUT_VARIABLE XMLRPC_C_CONFIG_CFLAGS
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
)
else
()
exec_program
(
${
XMLRPC_C_CONFIG
}
ARGS
"
${
XMLRPC_FIND_COMPONENTS
}
--cflags"
OUTPUT_VARIABLE XMLRPC_C_CONFIG_CFLAGS
RETURN_VALUE XMLRPC_C_CONFIG_RESULT
)
endif
()
execute_process
(
COMMAND
${
XMLRPC_C_CONFIG
}
${
XMLRPC_FIND_COMPONENTS
}
--cflags
OUTPUT_VARIABLE XMLRPC_C_CONFIG_CFLAGS
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
)
# Parse the include flags.
if
(
"
${
XMLRPC_C_CONFIG_RESULT
}
"
STREQUAL
"0"
)
...
...
@@ -65,6 +57,7 @@ if(XMLRPC_C_FOUND)
XMLRPC_C_CONFIG_CFLAGS
"
${
XMLRPC_C_CONFIG_CFLAGS
}
"
)
# Look for -I options.
# FIXME: Use these as hints to a find_path call to find the headers.
set
(
XMLRPC_INCLUDE_DIRS
)
foreach
(
flag
${
XMLRPC_C_CONFIG_CFLAGS
}
)
if
(
"
${
flag
}
"
MATCHES
"^-I(.+)"
)
...
...
@@ -80,20 +73,12 @@ endif()
# Lookup the libraries needed for the components requested.
if
(
XMLRPC_C_FOUND
)
# Use the newer EXECUTE_PROCESS command if it is available.
if
(
COMMAND EXECUTE_PROCESS
)
execute_process
(
COMMAND
${
XMLRPC_C_CONFIG
}
${
XMLRPC_FIND_COMPONENTS
}
--libs
OUTPUT_VARIABLE XMLRPC_C_CONFIG_LIBS
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
)
else
()
exec_program
(
${
XMLRPC_C_CONFIG
}
ARGS
"
${
XMLRPC_FIND_COMPONENTS
}
--libs"
OUTPUT_VARIABLE XMLRPC_C_CONFIG_LIBS
RETURN_VALUE XMLRPC_C_CONFIG_RESULT
)
endif
()
execute_process
(
COMMAND
${
XMLRPC_C_CONFIG
}
${
XMLRPC_FIND_COMPONENTS
}
--libs
OUTPUT_VARIABLE XMLRPC_C_CONFIG_LIBS
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
)
# Parse the library names and directories.
if
(
"
${
XMLRPC_C_CONFIG_RESULT
}
"
STREQUAL
"0"
)
...
...
@@ -139,5 +124,5 @@ endif()
include
(
${
CMAKE_CURRENT_LIST_DIR
}
/FindPackageHandleStandardArgs.cmake
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
XMLRPC
REQUIRED_VARS XMLRPC_C_FOUND XMLRPC_LIBRARIES
XMLRPC_INCLUDE_DIRS
REQUIRED_VARS XMLRPC_C_FOUND XMLRPC_LIBRARIES
FAIL_MESSAGE
"XMLRPC was not found. Make sure the entries XMLRPC_* are set."
)
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