mirror of
https://github.com/gyroflow/gyroflow.git
synced 2026-07-04 15:06:45 +00:00
266 lines
12 KiB
Rust
266 lines
12 KiB
Rust
// 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" => {
|
|
if let Ok(ffmpeg_dir) = std::env::var("FFMPEG_DIR") && !ffmpeg_dir.is_empty() {
|
|
println!("cargo:rustc-link-search={ffmpeg_dir}/lib/arm64-v8a");
|
|
println!("cargo:rustc-link-search={ffmpeg_dir}/lib");
|
|
config.include(format!("{ffmpeg_dir}/include"));
|
|
}
|
|
},
|
|
"macos" | "ios" => {
|
|
if let Ok(ffmpeg_dir) = std::env::var("FFMPEG_DIR") && !ffmpeg_dir.is_empty() {
|
|
println!("cargo:rustc-link-search={ffmpeg_dir}/lib");
|
|
}
|
|
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());
|
|
if let Ok(ffmpeg_dir) = std::env::var("FFMPEG_DIR") && !ffmpeg_dir.is_empty() {
|
|
println!("cargo:rustc-link-search={ffmpeg_dir}/lib/{}", std::env::var("FFMPEG_ARCH").unwrap_or("amd64".into()));
|
|
println!("cargo:rustc-link-search={ffmpeg_dir}/lib");
|
|
}
|
|
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());
|
|
if let Ok(ffmpeg_dir) = std::env::var("FFMPEG_DIR") && !ffmpeg_dir.is_empty() {
|
|
println!("cargo:rustc-link-search={ffmpeg_dir}\\lib\\{}", std::env::var("FFMPEG_ARCH").unwrap_or("x64".into()));
|
|
println!("cargo:rustc-link-search={ffmpeg_dir}\\lib");
|
|
}
|
|
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(link_paths) = std::env::var("EXTRA_LINK_PATHS") && !link_paths.is_empty() {
|
|
for dir in link_paths.split(';') {
|
|
println!("cargo:rustc-link-search={dir}");
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|