tectonic 0.6.2

A modernized, complete, embeddable TeX/LaTeX engine. Tectonic is forked from the XeTeX extension to the classic “Web2C” implementation of TeX and uses the TeXLive distribution of support files.
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2016-2021 the Tectonic Project
// Licensed under the MIT License.

use std::env;

fn main() {
    // Re-export $TARGET during the build so that our executable tests know
    // what environment variable CARGO_TARGET_@TARGET@_RUNNER to check when
    // they want to spawn off executables.

    let target = env::var("TARGET").unwrap();
    println!("cargo:rustc-env=TARGET={}", target);
}