making eressea follow the common project structure

This commit is contained in:
Enno Rehling 2010-02-21 01:41:34 +00:00
parent 497e11f5c6
commit 45fd9eb79c
3 changed files with 24 additions and 1 deletions

View File

@ -202,6 +202,26 @@
RelativePath="..\common\build\kernel.c" RelativePath="..\common\build\kernel.c"
> >
</File> </File>
<File
RelativePath=".\main.c"
>
<FileConfiguration
Name="Debug|Win32"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32"
ExcludedFromBuild="true"
>
<Tool
Name="VCCLCompilerTool"
/>
</FileConfiguration>
</File>
<File <File
RelativePath=".\server.c" RelativePath=".\server.c"
> >

View File

@ -21,7 +21,6 @@
/* config includes */ /* config includes */
#include <platform.h> #include <platform.h>
#include "stdafx.h"
#include <kernel/eressea.h> #include <kernel/eressea.h>
#include <gmtool.h> #include <gmtool.h>

4
src/eressea/server.c Normal file
View File

@ -0,0 +1,4 @@
#include <platform.h>
#include "stdafx.h"
#include "main.c"