Compiling now.

This commit is contained in:
Brad Arant 2024-07-09 17:09:19 -07:00
parent 69914cbd59
commit 609179e235
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -5,7 +5,7 @@ do
filename="${file%.*}"
list="$list $filename.o"
echo -n "Compiling $filename..."
g++ -g -c -std=c++17 -I../CoreUtils -I../ServerCore $file &
g++ -g -c -std=c++23 -I../CoreUtils -I../ServerCore $file &
if [ $? = '0' ]
then
echo "OK"
@ -18,7 +18,7 @@ done
wait
echo -n "Building executable HTTPServer..."
g++ -g -o HTTPServer $list -std=c++17 -L../CoreUtils -lCoreUtils -L../ServerCore -lServerCore -lpthread -luuid -lssl -lcrypto
g++ -g -o HTTPServer $list -std=c++23 -L../CoreUtils -lCoreUtils -L../ServerCore -lServerCore -lpthread -luuid -lssl -lcrypto
if [ $? = '0' ]
then
echo "OK"