Files
openide/native/restarter/build.rs
Roman Shevchenko 9ccec13a01 [platform] adding resource strings to Windows restarter (IJPL-34858)
GitOrigin-RevId: a7174e3fbe28c3107201e34b5d6142a9fff83d6e
2024-05-06 10:57:51 +00:00

9 lines
254 B
Rust

// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
fn main() {
#[cfg(target_os = "windows")]
{
winresource::WindowsResource::new().compile().unwrap();
}
}