2020-09-28 20:01:50 +02:00
|
|
|
#!/bin/bash
|
|
|
|
g++ \
|
|
|
|
\
|
|
|
|
-std=c++17 \
|
|
|
|
\
|
|
|
|
-D __linux__ \
|
|
|
|
-D JASONPP_RENDER_SORTED \
|
|
|
|
\
|
|
|
|
../Tubio/main.cpp \
|
|
|
|
../Tubio/ConsoleManager.cpp \
|
|
|
|
../Tubio/DownloadManager.cpp \
|
|
|
|
../Tubio/FileSystem.cpp \
|
|
|
|
../Tubio/Framework.cpp \
|
|
|
|
../Tubio/HttpServer.cpp \
|
|
|
|
../Tubio/Logger.cpp \
|
|
|
|
../Tubio/LogHistory.cpp \
|
|
|
|
../Tubio/RestQueryHandler.cpp \
|
|
|
|
../Tubio/RestResponseTemplates.cpp \
|
|
|
|
../Tubio/XGConfig.cpp \
|
|
|
|
../Tubio/XGControl.cpp \
|
2020-11-15 22:30:50 +01:00
|
|
|
../Tubio/Updater.cpp \
|
|
|
|
../Tubio/Idler.cpp \
|
2020-09-28 20:01:50 +02:00
|
|
|
\
|
|
|
|
\
|
|
|
|
../Tubio/external_dependencies/casenta/mongoose/mongoose.c \
|
|
|
|
../Tubio/external_dependencies/leonetienne/JasonPP/JasonPP.cpp \
|
|
|
|
\
|
|
|
|
-lpthread \
|
|
|
|
\
|
2021-03-03 19:08:06 +01:00
|
|
|
-Wall \
|
2020-09-28 20:01:50 +02:00
|
|
|
-o ./tubio.out
|