mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 13:51:13 +00:00

On Windows 10, the creation of symlinks by normal users requires enabling the developer mode, which may or may not be acceptable in corporate environments with restricted IT setups. We introduced the symlinks for the shared special key codes mapping, which instead this patch places into a shared sixtyfps-common crate.
25 lines
1.3 KiB
Bash
Executable file
25 lines
1.3 KiB
Bash
Executable file
#!/bin/bash -e
|
|
# LICENSE BEGIN
|
|
# This file is part of the SixtyFPS Project -- https://sixtyfps.io
|
|
# Copyright (c) 2021 Olivier Goffart <olivier.goffart@sixtyfps.io>
|
|
# Copyright (c) 2021 Simon Hausmann <simon.hausmann@sixtyfps.io>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
# This file is also available under commercial licensing terms.
|
|
# Please contact info@sixtyfps.io for more information.
|
|
# LICENSE END
|
|
cargo publish --manifest-path sixtyfps_runtime/corelib_macros/Cargo.toml
|
|
cargo publish --manifest-path sixtyfps_runtime/common/Cargo.toml
|
|
cargo publish --manifest-path sixtyfps_compiler/Cargo.toml
|
|
cargo publish --manifest-path sixtyfps_runtime/corelib/Cargo.toml
|
|
cargo publish --manifest-path api/sixtyfps-rs/sixtyfps-macros/Cargo.toml
|
|
cargo publish --manifest-path sixtyfps_runtime/rendering_backends/gl/Cargo.toml --features x11
|
|
cargo publish --manifest-path api/sixtyfps-rs/sixtyfps-build/Cargo.toml
|
|
cargo publish --manifest-path sixtyfps_runtime/rendering_backends/qt/Cargo.toml
|
|
sleep 30
|
|
cargo publish --manifest-path sixtyfps_runtime/rendering_backends/default/Cargo.toml
|
|
sleep 30
|
|
cargo publish --manifest-path sixtyfps_runtime/interpreter/Cargo.toml
|
|
cargo publish --manifest-path api/sixtyfps-rs/Cargo.toml
|
|
cargo publish --manifest-path tools/lsp/Cargo.toml
|
|
cargo publish --manifest-path tools/viewer/Cargo.toml
|