C_CPP/05_OO/build.sh

3 lines
207 B
Bash
Raw Normal View History

2018-03-09 09:47:53 +01:00
#!/bin/bash
clang++ -std=c++14 -o shape_main.out -I ../helpers/ shapes_main.cpp ../helpers/AnsiConsole.cpp
2018-05-06 17:57:51 +02:00
clang++ -std=c++14 -o ansiConsole.out -I ../helpers/ AnsiConsoleDemo.cpp ../helpers/AnsiConsole.cpp