File-viewer/src/compile.sh

6 lines
152 B
Bash
Raw Normal View History

#!/bin/bash
2018-02-17 18:12:47 +01:00
#Don't know cmake so here's a simple bash script for compiling
g++ -c Directory.cpp -o Directory.o
g++ Main.cpp Directory.o -o File-viewer