mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
25 lines
704 B
Rust
25 lines
704 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#[cfg(target_os = "macos")]
|
|
extern crate cc;
|
|
|
|
#[cfg(windows)]
|
|
extern crate winres;
|
|
|
|
fn main() {
|
|
#[cfg(windows)]
|
|
{
|
|
let mut res = winres::WindowsResource::new();
|
|
res.set_icon("../../resources/Servo.ico");
|
|
res.set_manifest_file("platform/windows/servo.exe.manifest");
|
|
res.compile().unwrap();
|
|
}
|
|
#[cfg(target_os = "macos")]
|
|
{
|
|
cc::Build::new()
|
|
.file("platform/macos/count_threads.c")
|
|
.compile("count_threads");
|
|
}
|
|
}
|