Fix: (for Linux builds) adding missing headers.

This commit is contained in:
mathieu _alkama_ m 2016-02-07 22:07:53 +01:00
parent 19862bde87
commit 9aaeb18204
3 changed files with 5 additions and 7 deletions

View File

@ -23,12 +23,6 @@ elseif (MSVC)
endif ()
##############################################################################
# SDL (linux only)
if (UNIX AND NOT APPLE)
endif ()
##############################################################################
# MXML
file(GLOB RKT_MXML_SRCS
${CMAKE_CURRENT_SOURCE_DIR}/external/mxml/*.c

View File

@ -18,7 +18,10 @@
#include "../../lib/base.h"
#include <emgui/Emgui.h>
#if defined(_WIN32)
#include <winsock2.h>
#include <winsock2.h>
#else
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
enum {

View File

@ -1,6 +1,7 @@
#include "SDL.h"
#include <stdio.h>
#include <emgui/Emgui.h>
#include <emgui/GFXBackend.h>
#include "Editor.h"
#include "Menu.h"