forked from Azure/iot-edge-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatewayFunctions.cmake
125 lines (110 loc) · 4.59 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
#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(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 comand
set(CMD cmake)
foreach(arg ${ARGN})
set(CMD ${CMD} ${arg})
endforeach()
if(DEFINED ${dependency_install_prefix})
set(CMD ${CMD} -DCMAKE_INSTALL_PREFIX=${dependency_install_prefix})
endif()
set(CMD ${CMD} ../)
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 -- ${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 submoduleRootDirectory cmakeRootDirectory)
if(NOT ${libraryName}_FOUND)
find_package(${libraryName} QUIET CONFIG HINTS ${dependency_install_prefix})
if(NOT ${libraryName}_FOUND)
message(STATUS "${libraryName} not found...")
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 ${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(DEFINED ${dependency_install_prefix})
set(CMD ${CMD} -DCMAKE_INSTALL_PREFIX=${dependency_install_prefix})
endif()
set(CMD ${CMD} ../)
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 -- ${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} REQUIRED CONFIG HINTS ${dependency_install_prefix})
endif()
endif()
endfunction()