mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fix compile errors on Ubuntu
This commit is contained in:
parent
4b4c891b30
commit
802aa50ad9
|
@ -35,7 +35,7 @@ endif()
|
||||||
find_package(FreeType REQUIRED)
|
find_package(FreeType REQUIRED)
|
||||||
find_package(FreeImage REQUIRED)
|
find_package(FreeImage REQUIRED)
|
||||||
find_package(SDL REQUIRED)
|
find_package(SDL REQUIRED)
|
||||||
find_package(Boost REQUIRED)
|
find_package(Boost REQUIRED COMPONENTS system filesystem)
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
#set up compiler flags and excutable names
|
#set up compiler flags and excutable names
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
//This is a shabby, sort of OS-independent resource "system"
|
//This is a shabby, sort of OS-independent resource "system"
|
||||||
//Use bin2h: http://code.google.com/p/bin2h/
|
//Use bin2h: http://code.google.com/p/bin2h/
|
||||||
//to convert the binary files to C code,
|
//to convert the binary files to C code,
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#include "ImageIO.h"
|
#include "ImageIO.h"
|
||||||
|
|
||||||
|
#include <memory.h>
|
||||||
|
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue