A BVE Trainsim ATS-Plugin implementation template in Rust.
The following instruction assumes that your computer OS is Windows.
Get and install Rust from the following link:
Install Rust - Rust Programming Language
Enter the following commands on your command line interface.
rustup target add i686-pc-windows-msvc
rustup target add x86_64-pc-windows-msvc
32bit DLL is generated by entering the following command:
cargo build --release --target="i686-pc-windows-msvc"
64bit DLL is generated by entering the following command:
cargo build --release --target="x86_64-pc-windows-msvc"