forked from infiniflow/infinity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.cmake
122 lines (103 loc) · 3.71 KB
/
utils.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
include_guard()
include(FetchContent)
macro(parse_var arg key value)
string(REGEX REPLACE "^(.+)=(.+)$" "\\1;\\2" REGEX_RESULT ${arg})
list(GET REGEX_RESULT 0 ${key})
list(GET REGEX_RESULT 1 ${value})
endmacro()
function(FetchContent_MakeAvailableWithArgs dep)
if(NOT ${dep}_POPULATED)
FetchContent_Populate(${dep})
foreach(arg IN LISTS ARGN)
parse_var(${arg} key value)
set(${key}_OLD ${${key}})
set(${key} ${value} CACHE INTERNAL "")
endforeach()
add_subdirectory(${${dep}_SOURCE_DIR} ${${dep}_BINARY_DIR} EXCLUDE_FROM_ALL)
foreach(arg IN LISTS ARGN)
parse_var(${arg} key value)
set(${key} ${${key}_OLD} CACHE INTERNAL "")
endforeach()
endif()
endfunction()
function(FetchContent_DeclareWithMirror dep url hash)
FetchContent_Declare(${dep}
URL ${DEPS_FETCH_PROXY}${url}
URL_HASH ${hash}
)
endfunction()
function(FetchContent_DeclareGitHubWithMirror dep repo tag hash)
FetchContent_DeclareWithMirror(${dep}
https://github.com/${repo}/archive/${tag}.zip
${hash}
)
endfunction()
macro(SET_FIND_LIBRARY_OPTIONS _prefixes _suffixes)
set(_CMAKE_FIND_LIBRARY_PREFIXES "${CMAKE_FIND_LIBRARY_PREFIXES}")
set(_CMAKE_FIND_LIBRARY_SUFFIXES "${CMAKE_FIND_LIBRARY_SUFFIXES}")
set(CMAKE_FIND_LIBRARY_PREFIXES "${_prefixes}" CACHE INTERNAL "" FORCE)
set(CMAKE_FIND_LIBRARY_SUFFIXES "${_suffixes}" CACHE INTERNAL "" FORCE)
endmacro()
macro(RESTORE_FIND_LIBRARY_OPTIONS)
set(CMAKE_FIND_LIBRARY_PREFIXES "${_CMAKE_FIND_LIBRARY_PREFIXES}" CACHE INTERNAL "" FORCE)
set(CMAKE_FIND_LIBRARY_SUFFIXES "${_CMAKE_FIND_LIBRARY_SUFFIXES}" CACHE INTERNAL "" FORCE)
endmacro()
macro(ADD_OPTION_GPROF DEFAULT)
if (CMAKE_COMPILER_IS_GNUCXX)
option(USE_GPROF "Compile using -pg for gprof output" ${DEFAULT})
if (USE_GPROF)
message(STATUS "Using gprof output for ${CMAKE_PROJECT_NAME}")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pg")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg")
else ()
message(STATUS "NOT using gprof output for ${CMAKE_PROJECT_NAME}")
endif ()
else ()
message(STATUS "gprof generation NOT AVAILABLE - Not a GNU compiler")
endif ()
endmacro()
# expands ~ to user home directory
#
# usage:
# expand_path("~/code" x)
function(expand_path in outvar)
string(SUBSTRING ${in} 0 1 first)
if (NOT ${first} STREQUAL "~")
set(${outvar} ${in} PARENT_SCOPE)
return()
endif ()
if (WIN32 AND NOT CYGWIN)
set(home $ENV{USERPROFILE})
else ()
set(home $ENV{HOME})
endif ()
if (NOT home)
set(${outvar} ${in} PARENT_SCOPE)
return()
endif ()
string(SUBSTRING ${in} 1 -1 tail)
if (CMAKE_VERSION VERSION_LESS 3.20)
file(TO_CMAKE_PATH ${home}${tail} out)
else ()
cmake_path(CONVERT ${home}${tail} TO_CMAKE_PATH_LIST out)
endif ()
set(${outvar} ${out} PARENT_SCOPE)
endfunction(expand_path)