rustimate 0.1.0

A planning poker app, mostly developed to learn Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

## Build a release-mode binary for Windows.

set -e
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
project_dir=${dir}/..
cd $project_dir

cargo build --release --target=x86_64-pc-windows-gnu

mkdir -p build/windows
cp target/x86_64-pc-windows-gnu/release/rustimate.exe build/windows/rustimate.exe
zip build/windows/rustimate.zip build/windows/rustimate.exe