mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-14 13:21:01 +03:00
13 lines
329 B
Rust
13 lines
329 B
Rust
// Copyright 2019-2021 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
fn main() {
|
|
let mut codegen = tauri_build::CodegenContext::new();
|
|
if !cfg!(feature = "custom-protocol") {
|
|
codegen = codegen.dev();
|
|
}
|
|
codegen.build();
|
|
tauri_build::build()
|
|
}
|