2019-10-29 15:12:04 +01:00
|
|
|
# vKVM Scripts
|
|
|
|
|
|
|
|
install & build all subprojects with one script
|
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
- *nix operating system
|
|
|
|
- package manager (either apt, pacman or homebrew)
|
|
|
|
- git
|
|
|
|
- a c++14 compatible compiler
|
|
|
|
- ssh key added to your gitlab profile
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
|
|
**install**
|
|
|
|
|
|
|
|
run this once in a empty directory.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone ssh://git@gitlab.repo.digitech.hs-emden-leer.de:2222/link/projekte/ws19/vkvm-new/installation.git
|
|
|
|
cd installation
|
|
|
|
./install.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
**update all subprojects**
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./update.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
**checkout development versions**
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./checkout-dev.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
**build all projects**
|
|
|
|
|
|
|
|
```sh
|
|
|
|
./build.sh
|
|
|
|
```
|