mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-31 12:30:32 +00:00
- m_png is common.
This commit is contained in:
parent
7243495b16
commit
f94e4a908c
4 changed files with 7 additions and 1 deletions
|
@ -1106,6 +1106,7 @@ set (PCH_SOURCES
|
|||
rendering/swrenderer/textures/swcanvastexture.cpp
|
||||
events.cpp
|
||||
common/thirdparty/sfmt/SFMT.cpp
|
||||
common/textures/m_png.cpp
|
||||
common/console/c_commandline.cpp
|
||||
common/console/c_buttons.cpp
|
||||
common/console/c_bind.cpp
|
||||
|
@ -1147,7 +1148,6 @@ set (PCH_SOURCES
|
|||
common/engine/palettecontainer.cpp
|
||||
common/engine/stringtable.cpp
|
||||
|
||||
utility/m_png.cpp
|
||||
utility/m_random.cpp
|
||||
utility/nodebuilder/nodebuild.cpp
|
||||
utility/nodebuilder/nodebuild_classify_nosse2.cpp
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
**
|
||||
*/
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#else
|
||||
#include <direct.h>
|
||||
#endif
|
||||
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Reference in a new issue