-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made compile guide
- Loading branch information
Showing
1 changed file
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,56 @@ | ||
# Ecdar-GUI-Native | ||
|
||
A native conversion of Ecdar-GUI-Web | ||
A native implementation of Ecdar-GUI-Web | ||
|
||
## Compile | ||
Be shure to be in the root folder of the project and follow these steps | ||
|
||
### Install Dependencies | ||
|
||
|
||
``` | ||
$ git clone https://github.com/ECDAR-AAU-SW-P5/Ecdar-GUI-Web.git | ||
``` | ||
|
||
#### Linux | ||
|
||
Install `node`, `npm` and `cargo` | ||
###### Arch | ||
``` | ||
$ sudo pacman -S cargo nodejs npm | ||
``` | ||
|
||
###### Debian | ||
``` | ||
$ sudo apt install cargo node npm | ||
``` | ||
|
||
#### Mac | ||
|
||
#### Windows | ||
|
||
### Npm Dependencies | ||
``` | ||
$ npm i -g vite | ||
$ cd Ecdar-GUI-WEB | ||
$ npm install | ||
$ cd .. | ||
``` | ||
### Cargo dependencies | ||
``` | ||
$ cargo install tauri-cli | ||
``` | ||
### Run | ||
#### Dev | ||
``` | ||
$ cargo tauri dev | ||
``` | ||
#### Release | ||
``` | ||
$ cargo tauri build | ||
``` | ||
|
||
###### Mac/Linux | ||
The executable can be found at `./src-tauri/target/release/ecdar` | ||
###### Windows | ||
The executable can be found at `.\src-tauri\target\release\ecdar.exe` |