From 617e9742d3bb0dd56aed44338f65b1c62305c279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Mon, 11 Jan 2021 21:35:43 +0100 Subject: [PATCH] move main.c to client-common --- code/apps/client/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/apps/client/CMakeLists.txt b/code/apps/client/CMakeLists.txt index 83084f7..a31bde7 100644 --- a/code/apps/client/CMakeLists.txt +++ b/code/apps/client/CMakeLists.txt @@ -22,6 +22,7 @@ endif() add_library(client-common STATIC source/network.c source/game.c + source/main.c header/network.h header/platform.h @@ -29,12 +30,10 @@ add_library(client-common STATIC ) add_executable(eco2d-client - source/main.c source/platform_raylib.c ) add_executable(eco2d-cli - source/main.c source/platform_text.c )