diff --git a/HTTPServer b/HTTPServer new file mode 100755 index 0000000..9d02a6b Binary files /dev/null and b/HTTPServer differ diff --git a/compile b/compile index dd37643..c06a198 100755 --- a/compile +++ b/compile @@ -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"