mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-31 23:57:26 +00:00

Base the commercial license on the Royalty-free license adding clauses pertaining to the fees.
52 lines
1.9 KiB
Rust
52 lines
1.9 KiB
Rust
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
use std::io::Write;
|
|
use std::path::PathBuf;
|
|
|
|
fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|
// target/{debug|release}/build/package/out/ -> target/{debug|release}
|
|
let mut target_dir = PathBuf::from(std::env::var("OUT_DIR").unwrap());
|
|
target_dir.pop();
|
|
target_dir.pop();
|
|
target_dir.pop();
|
|
|
|
println!("cargo:rustc-env=SLINT_ENABLE_EXPERIMENTAL_FEATURES=1",);
|
|
|
|
let tests_file_path =
|
|
std::path::Path::new(&std::env::var_os("OUT_DIR").unwrap()).join("test_functions.rs");
|
|
|
|
let mut tests_file = std::fs::File::create(&tests_file_path)?;
|
|
|
|
for testcase in test_driver_lib::collect_test_cases("cases")?.into_iter().filter(|testcase| {
|
|
// Style testing not supported yet
|
|
testcase.requested_style.is_none()
|
|
}) {
|
|
println!("cargo:rerun-if-changed={}", testcase.absolute_path.display());
|
|
let test_function_name = testcase.identifier();
|
|
let ignored = testcase.is_ignored("js");
|
|
|
|
write!(
|
|
tests_file,
|
|
r##"
|
|
#[test]
|
|
{ignore}
|
|
fn test_nodejs_{function_name}() {{
|
|
nodejs::test(&test_driver_lib::TestCase{{
|
|
absolute_path: std::path::PathBuf::from(r#"{absolute_path}"#),
|
|
relative_path: std::path::PathBuf::from(r#"{relative_path}"#),
|
|
requested_style: None,
|
|
}}).unwrap();
|
|
}}
|
|
"##,
|
|
ignore = if ignored { "#[ignore]" } else { "" },
|
|
function_name = test_function_name,
|
|
absolute_path = testcase.absolute_path.to_string_lossy(),
|
|
relative_path = testcase.relative_path.to_string_lossy(),
|
|
)?;
|
|
}
|
|
|
|
println!("cargo:rustc-env=TEST_FUNCTIONS={}", tests_file_path.to_string_lossy());
|
|
|
|
Ok(())
|
|
}
|