mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
Changed: #1323 Cmake with snowballs (patch provided by dfighter)
This commit is contained in:
parent
5738f6ae47
commit
f302b70712
6 changed files with 19 additions and 1 deletions
|
@ -70,6 +70,10 @@
|
|||
#include "internationalization.h"
|
||||
#include "game_time.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
using namespace NL3D;
|
||||
|
|
|
@ -36,6 +36,9 @@
|
|||
// We're using the NeL Service framework, and layer 5
|
||||
#include <nel/net/service.h>
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
using namespace NLMISC;
|
||||
|
|
|
@ -17,6 +17,10 @@
|
|||
#include "collision_service.h"
|
||||
#include <nel/3d/u_instance_group.h>
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
using namespace SBSERVICE;
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
FILE(GLOB SRC *.cpp *.h)
|
||||
|
||||
ADD_EXECUTABLE(snowballs_frontend_service ${SRC})
|
||||
ADD_EXECUTABLE(snowballs_frontend_service WIN32 ${SRC})
|
||||
|
||||
INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR})
|
||||
|
||||
|
|
|
@ -38,6 +38,10 @@
|
|||
#include <map>
|
||||
#include <utility>
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
using namespace std;
|
||||
|
|
|
@ -41,6 +41,9 @@
|
|||
|
||||
#include "physics.h"
|
||||
|
||||
#ifdef NL_OS_WINDOWS
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
using namespace NLMISC;
|
||||
using namespace NLNET;
|
||||
|
|
Loading…
Reference in a new issue