forked from gyroflow/gyroflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
251 lines (221 loc) · 11.7 KB
/
build.rs
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright © 2021-2022 Adrian <adrian.eddy at gmail>
use std::process::Command;
use std::path::Path;
use std::env;
use walkdir::WalkDir;
use std::fmt::Write;
fn compile_qml(dir: &str, qt_include_path: &str, qt_library_path: &str) {
let mut config = cc::Build::new();
config.include(qt_include_path);
config.include(&format!("{}/QtCore", qt_include_path));
config.include(&format!("{}/QtQml", qt_include_path));
if cfg!(target_os = "macos") {
config.include(format!("{}/QtCore.framework/Headers/", qt_library_path));
config.include(format!("{}/QtQml.framework/Headers/", qt_library_path));
}
for f in std::env::var("DEP_QT_COMPILE_FLAGS").unwrap().split_terminator(';') {
config.flag(f);
}
println!("cargo:rerun-if-changed={}", dir);
let out_dir = env::var("OUT_DIR").unwrap();
let out_dir = Path::new(&out_dir);
let main_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
let mut files = Vec::new();
let mut qrc = "<RCC>\n<qresource prefix=\"/\">\n".to_string();
WalkDir::new(dir).into_iter().flatten().for_each(|entry| {
let f_name = entry.path().to_string_lossy().replace('\\', "/");
if f_name.ends_with(".qml") || f_name.ends_with(".js") {
let _ = writeln!(qrc, "<file>{}</file>", f_name);
let cpp_name = f_name.replace('/', "_").replace(".qml", ".cpp").replace(".js", ".cpp");
let cpp_path = out_dir.join(cpp_name).to_string_lossy().to_string();
config.file(&cpp_path);
files.push((f_name, cpp_path));
}
});
let qt_path = std::path::Path::new(qt_library_path).parent().unwrap();
let compiler_path = if qt_path.join("libexec/qmlcachegen").exists() {
qt_path.join("libexec/qmlcachegen").to_string_lossy().to_string()
} else if qt_path.join("../macos/libexec/qmlcachegen").exists() {
qt_path.join("../macos/libexec/qmlcachegen").to_string_lossy().to_string()
} else if env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" && env::var("CARGO_CFG_TARGET_ARCH").unwrap() == "aarch64" {
qt_path.join("../msvc2019_64/bin/qmlcachegen").to_string_lossy().to_string()
} else {
"qmlcachegen".to_string()
};
qrc.push_str("</qresource>\n</RCC>");
let qrc_path = Path::new(&main_dir).join("ui.qrc").to_string_lossy().to_string();
std::fs::write(&qrc_path, qrc).unwrap();
for (qml, cpp) in &files {
assert!(Command::new(&compiler_path).args(["--resource", &qrc_path, "-o", cpp, qml]).status().unwrap().success());
}
let loader_path = out_dir.join("qmlcache_loader.cpp").to_str().unwrap().to_string();
assert!(Command::new(&compiler_path).args(["--resource-file-mapping", &qrc_path, "-o", &loader_path, "ui.qrc"]).status().unwrap().success());
config.file(&loader_path);
std::fs::remove_file(&qrc_path).unwrap();
config.cargo_metadata(false).compile("qmlcache");
println!("cargo:rustc-link-lib=static:+whole-archive=qmlcache");
}
fn main() {
let qt_include_path = env::var("DEP_QT_INCLUDE_PATH").unwrap();
let qt_library_path = env::var("DEP_QT_LIBRARY_PATH").unwrap();
let qt_version = env::var("DEP_QT_VERSION").unwrap();
let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
if let Ok(out_dir) = env::var("OUT_DIR") {
println!("cargo::rustc-check-cfg=cfg(compiled_qml)");
if out_dir.contains("\\deploy\\build\\") || out_dir.contains("/deploy/build/") || target_os == "android" || target_os == "ios" {
compile_qml("src/ui/", &qt_include_path, &qt_library_path);
println!("cargo:rustc-cfg=compiled_qml");
}
}
let mut config = cpp_build::Config::new();
for f in env::var("DEP_QT_COMPILE_FLAGS").unwrap().split_terminator(';') {
config.flag(f);
}
// config.define("QT_QML_DEBUG", None);
println!("cargo:rerun-if-changed=src/qt_gpu/qrhi_undistort.cpp");
if target_os == "ios" {
println!("cargo:rerun-if-changed=_deployment/ios/qml_plugins.cpp");
config.file("_deployment/ios/qml_plugins.cpp");
println!("cargo:rustc-link-arg=-Wl,-e,_qt_main_wrapper");
println!("cargo:rustc-link-arg=-fapple-link-rtlib");
println!("cargo:rustc-link-arg=-dead_strip");
let frameworks = [
"AudioToolbox", "AVFoundation", "CoreAudio", "CoreFoundation",
"CoreGraphics", "CoreMedia", "CoreServices", "CoreText",
"CoreVideo", "Foundation", "ImageIO", "IOKit", "CFNetwork",
"OpenGLES", "QuartzCore", "Security", "SystemConfiguration",
"UIKit", "UniformTypeIdentifiers", "VideoToolbox", "Photos"
];
println!("cargo:rustc-link-lib=z");
println!("cargo:rustc-link-lib=bz2");
println!("cargo:rustc-link-lib=xml2");
for x in frameworks {
println!("cargo:rustc-link-lib=framework={x}");
}
let mut added_paths = vec![];
for x in walkdir::WalkDir::new(Path::new(&qt_library_path).parent().unwrap()) {
let x = x.unwrap();
let name = x.file_name().to_str().unwrap();
let path = x.path().to_str().unwrap();
if path.contains("objects-Debug") ||
path.contains("Imagine") ||
path.contains("Fusion") ||
path.contains("Universal") ||
path.to_ascii_lowercase().contains("particles") ||
path.to_ascii_lowercase().contains("tooling") ||
path.to_ascii_lowercase().contains("test") {
continue;
}
if name.starts_with("qrc_") && name.ends_with(".cpp.o") {
println!("cargo:rustc-link-arg=-force_load");
println!("cargo:rustc-link-arg={}", path);
}
if name.starts_with("lib") && name.ends_with(".a") {
let parent_path = x.path().parent().unwrap().to_str().unwrap().to_owned();
if !added_paths.contains(&parent_path) {
println!("cargo:rustc-link-search={}", parent_path);
added_paths.push(parent_path);
}
if !name.contains("_debug") && !name.contains("Widgets") && !name.contains("Test") {
println!("cargo:rustc-link-lib={}", name[3..].replace(".a", ""));
}
}
};
} else if target_os == "macos" {
println!("cargo:rustc-link-lib=z");
println!("cargo:rustc-link-lib=bz2");
println!("cargo:rustc-link-lib=xml2");
println!("cargo:rustc-link-lib=framework=AudioToolbox");
println!("cargo:rustc-link-lib=framework=VideoToolbox");
println!("cargo:rustc-link-lib=framework=QuartzCore");
println!("cargo:rustc-link-lib=framework=Foundation");
println!("cargo:rustc-link-lib=framework=CoreMedia");
println!("cargo:rustc-link-lib=framework=CoreAudio");
println!("cargo:rustc-link-lib=framework=CoreVideo");
println!("cargo:rustc-link-lib=framework=CoreServices");
println!("cargo:rustc-link-lib=framework=CoreFoundation");
println!("cargo:rustc-link-lib=framework=AppKit");
println!("cargo:rustc-link-lib=framework=OpenGL");
println!("cargo:rustc-link-lib=framework=CFNetwork");
println!("cargo:rustc-link-lib=framework=Security");
}
let mut public_include = |name| {
if cfg!(target_os = "macos") {
config.include(format!("{}/{}.framework/Headers/", qt_library_path, name));
}
config.include(format!("{}/{}", qt_include_path, name));
};
public_include("QtCore");
public_include("QtGui");
public_include("QtQuick");
public_include("QtQml");
public_include("QtQuickControls2");
let mut private_include = |name| {
if cfg!(target_os = "macos") {
config.include(format!("{}/{}.framework/Headers/{}", qt_library_path, name, qt_version));
config.include(format!("{}/{}.framework/Headers/{}/{}", qt_library_path, name, qt_version, name));
}
config.include(format!("{}/{}/{}", qt_include_path, name, qt_version))
.include(format!("{}/{}/{}/{}", qt_include_path, name, qt_version, name));
};
private_include("QtCore");
private_include("QtGui");
private_include("QtQuick");
private_include("QtQml");
match target_os.as_str() {
"android" => {
println!("cargo:rustc-link-search={}/lib/arm64-v8a", std::env::var("FFMPEG_DIR").unwrap());
println!("cargo:rustc-link-search={}/lib", std::env::var("FFMPEG_DIR").unwrap());
config.include(format!("{}/include", std::env::var("FFMPEG_DIR").unwrap()));
},
"macos" | "ios" => {
println!("cargo:rustc-link-search={}/lib", std::env::var("FFMPEG_DIR").unwrap());
println!("cargo:rustc-link-lib=static:+whole-archive=x264");
println!("cargo:rustc-link-lib=static=x265");
},
"linux" => {
println!("cargo:rustc-link-search={}", std::env::var("OPENCV_LINK_PATHS").unwrap());
println!("cargo:rustc-link-search={}/lib/{}", std::env::var("FFMPEG_DIR").unwrap(), std::env::var("FFMPEG_ARCH").unwrap_or("amd64".into()));
println!("cargo:rustc-link-search={}/lib", std::env::var("FFMPEG_DIR").unwrap());
println!("cargo:rustc-link-lib=static:+whole-archive=z");
if std::env::var("OPENCV_LINK_PATHS").unwrap_or_default().contains("vcpkg") {
std::env::var("OPENCV_LINK_LIBS").unwrap().split(',').for_each(|lib| println!("cargo:rustc-link-lib=static:+whole-archive={}", lib.trim()));
} else {
std::env::var("OPENCV_LINK_LIBS").unwrap().split(',').for_each(|lib| println!("cargo:rustc-link-lib={}", lib.trim()));
}
},
"windows" => {
println!("cargo:rustc-link-arg=/EXPORT:NvOptimusEnablement");
println!("cargo:rustc-link-arg=/EXPORT:AmdPowerXpressRequestHighPerformance");
println!("cargo:rustc-link-search={}", std::env::var("OPENCV_LINK_PATHS").unwrap());
println!("cargo:rustc-link-search={}\\lib\\{}", std::env::var("FFMPEG_DIR").unwrap(), std::env::var("FFMPEG_ARCH").unwrap_or("x64".into()));
println!("cargo:rustc-link-search={}\\lib", std::env::var("FFMPEG_DIR").unwrap());
let mut res = winres::WindowsResource::new();
res.set_icon("resources/app_icon.ico");
res.set("FileVersion", env!("CARGO_PKG_VERSION"));
res.set("ProductVersion", env!("CARGO_PKG_VERSION"));
res.set("ProductName", "Gyroflow");
res.set("FileDescription", &format!("Gyroflow v{}", env!("CARGO_PKG_VERSION")));
res.compile().unwrap();
}
tos => panic!("unknown target os {:?}!", tos)
}
if let Ok(time) = std::time::SystemTime::now().duration_since(std::time::SystemTime::UNIX_EPOCH) {
println!("cargo:rustc-env=BUILD_TIME={}", (time.as_secs() - 1642516578) / 600); // New version every 10 minutes
}
config
.include(&qt_include_path)
.build("src/gyroflow.rs");
if target_os == "ios" {
let out_dir = env::var("OUT_DIR").unwrap();
for entry in Path::new(&out_dir).read_dir().unwrap() {
let path = entry.unwrap().path();
if path.is_file() && path.to_string_lossy().contains("qml_plugins.o") {
println!("cargo:rustc-link-arg=-force_load");
println!("cargo:rustc-link-arg={}", path.to_string_lossy());
break;
}
}
}
}