Initial commit

This commit is contained in:
KamilM1205 2026-03-26 23:19:33 +04:00
commit 1c6b515826
13 changed files with 33425 additions and 0 deletions

1
server/CMakeLists.txt Normal file
View file

@ -0,0 +1 @@
add_subdirectory(src)

View file

@ -0,0 +1,8 @@
set(SERVER_SRC
main.c
)
list(TRANSFORM SERVER_SRC PREPEND ${CMAKE_CURRENT_LIST_DIR}/)
add_executable(pigeon-server ${SERVER_SRC})

1
server/src/main.c Normal file
View file

@ -0,0 +1 @@
int main() {}