64fe9fcad0
created setup, build and install scripts to make it easier and convenient to compile and install the application from source. no plans distribute pre-compiled binaries because it's just so much easier to guarantee the application will actually work in the target machine when compiled by the target machine.
8 lines
68 B
Bash
8 lines
68 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p ./.build-mow
|
|
cd ./.build-mow
|
|
cmake ..
|
|
make -j4
|
|
|