Initial commit

This commit is contained in:
2026-01-09 17:07:05 +01:00
commit c621a6c652
17 changed files with 836 additions and 0 deletions

13
server/Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC=g++
CFLAGS+=-Werror -Wall
LDLIBS=-lcurl -lpcre -lws2_32
CFILES = \
src/main.cpp
OFILES = $(CFILES:.cpp=.o)
all: $(OFILES)
$(CC) $(CFLAGS) $(OFILES) $(LDLIBS)
clean:
$(RM) $(OFILES)

6
server/src/main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}