Добавлены заголовки, начата разработка модуля игры

This commit is contained in:
2026-04-22 22:02:13 +05:00
parent 547b68773f
commit 8ebacd77eb
13 changed files with 422 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.5)
project(neurox_server)
set(INCLUDES )
set(HEADERS )
set(SOURCES server.c)
add_executable(server ${INCLUDES} ${HEADERS} ${SOURCES})
target_include_directories(server PUBLIC includes PRIVATE headers)