forked from Azure/iot-edge-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatewayFunctions.cmake
178 lines (152 loc) · 6.57 KB
/
gatewayFunctions.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.
if(WIN32)
set(cores /m)
else()
set(cores -j ${build_cores})
endif()
# Additional arguments to the specific projects cmake command may be specified after specifying the cmakeRootDirectory
function(findAndInstallNonFindPkg libraryName submoduleRootDirectory cmakeRootDirectory)
# If we have a build type passed in then we use it when building this
# project by passing it as the value for the --config argument to the
# "cmake --build" command.
if(CMAKE_BUILD_TYPE)
set(BUILD_CONFIGURATION --config ${CMAKE_BUILD_TYPE})
else()
set(BUILD_CONFIGURATION "")
endif()
if(${rebuild_deps} OR NOT EXISTS "${CMAKE_INSTALL_PREFIX}/../${libraryName}")
message(STATUS "${libraryName} not found...")
message(STATUS "Building ${libraryName}...")
#If the library directory doesn't exist, pull submodules
if(NOT EXISTS "${cmakeRootDirectory}/src")
execute_process(
COMMAND git submodule update --init ${submoduleRootDirectory}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
RESULT_VARIABLE res
)
endif()
if(${res})
message(FATAL_ERROR "Error pull submodules: ${res}")
endif()
#Create the build directory to run cmake, and run cmake
#generate command
set(CMD cmake)
foreach(arg ${ARGN})
set(CMD ${CMD} ${arg})
endforeach()
# If we have a build type passed in then we propagate it down the chain
# when building this dependency.
if(CMAKE_BUILD_TYPE)
set(CMD ${CMD} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE})
endif()
if(DEFINED ${dependency_install_prefix})
set(CMD ${CMD} -DCMAKE_INSTALL_PREFIX=${dependency_install_prefix})
endif()
if(CMAKE_TOOLCHAIN_FILE)
set( CMD ${CMD} -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE})
endif()
set(CMD ${CMD} ../)
# Re-create the build folder for making a fresh build
file(REMOVE_RECURSE ${cmakeRootDirectory}/build)
file(MAKE_DIRECTORY ${cmakeRootDirectory}/build)
execute_process(
COMMAND ${CMD}
WORKING_DIRECTORY ${cmakeRootDirectory}/build
RESULT_VARIABLE res
)
if(${res})
message(FATAL_ERROR "Error running cmake for ${libraryName}: ${res}")
endif()
# Install library
message(STATUS "Installing ${libraryName}. Please wait...")
execute_process(
COMMAND cmake --build . --target install ${BUILD_CONFIGURATION} -- ${cores}
WORKING_DIRECTORY ${cmakeRootDirectory}/build
RESULT_VARIABLE res
OUTPUT_FILE output.txt
ERROR_FILE error.txt
)
if(${res})
message(FATAL_ERROR "Error installing ${libraryName}: ${res}")
endif()
endif()
endfunction()
#Additional arguments to the specific projects cmake command may be specified after specifying the cmakeRootDirectory
function(findAndInstall libraryName version submoduleRootDirectory cmakeRootDirectory)
# If we have a build type passed in then we use it when building this
# project by passing it as the value for the --config argument to the
# "cmake --build" command.
if(CMAKE_BUILD_TYPE)
set(BUILD_CONFIGURATION --config ${CMAKE_BUILD_TYPE})
else()
set(BUILD_CONFIGURATION "")
endif()
if(${rebuild_deps} OR NOT ${libraryName}_FOUND)
# We are interested in doing a "find_package" only if we aren't going
# to rebuild dependencies anyway.
if(NOT ${rebuild_deps})
find_package(${libraryName} ${version} QUIET CONFIG HINTS ${dependency_install_prefix})
endif()
if(${rebuild_deps} OR NOT ${libraryName}_FOUND)
if(NOT ${rebuild_deps} )
message(STATUS "${libraryName} not found...")
endif()
message(STATUS "Building ${libraryName}...")
#If the library directory doesn't exist, pull submodules
if(NOT EXISTS "${cmakeRootDirectory}/CMakeLists.txt")
execute_process(
COMMAND git submodule update --init --recursive ${submoduleRootDirectory}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
RESULT_VARIABLE res
)
endif()
if(${res})
message(FATAL_ERROR "Error pulling submodules: ${res}")
endif()
#Create the build directory to run cmake, and run cmake
#generate comand
set(CMD cmake)
foreach(arg ${ARGN})
set(CMD ${CMD} ${arg})
endforeach()
# If we have a build type passed in then we propagate it down the chain
# when building this dependency.
if(CMAKE_BUILD_TYPE)
set(CMD ${CMD} -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE})
endif()
if(DEFINED ${dependency_install_prefix})
set(CMD ${CMD} -DCMAKE_INSTALL_PREFIX=${dependency_install_prefix})
endif()
if(CMAKE_TOOLCHAIN_FILE)
set(CMD ${CMD} -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE})
endif()
set(CMD ${CMD} ../)
# Re-create the build folder for making a fresh build
file(REMOVE_RECURSE ${cmakeRootDirectory}/build)
file(MAKE_DIRECTORY ${cmakeRootDirectory}/build)
execute_process(
COMMAND ${CMD}
WORKING_DIRECTORY ${cmakeRootDirectory}/build
RESULT_VARIABLE res
)
if(${res})
message(FATAL_ERROR "Error running cmake for ${libraryName}: ${res}")
endif()
# Install library
message(STATUS "Installing ${libraryName}. Please wait...")
execute_process(
COMMAND cmake --build . --target install ${BUILD_CONFIGURATION} -- ${cores}
WORKING_DIRECTORY ${cmakeRootDirectory}/build
RESULT_VARIABLE res
OUTPUT_FILE output.txt
ERROR_FILE error.txt
)
if(${res})
message(FATAL_ERROR "Error installing ${libraryName}: ${res}")
endif()
#Attempt to find library with the REQUIRED option
find_package(${libraryName} ${version} REQUIRED CONFIG HINTS ${dependency_install_prefix})
endif()
endif()
endfunction()