Small fix in the premake4 file.

This commit is contained in:
Martín Lucas Golini
2013-06-26 01:14:26 -03:00
parent 5994944b60
commit beb4716bce
4 changed files with 4 additions and 5 deletions

View File

@@ -261,9 +261,9 @@ function build_link_configuration( package_name, use_ee_icon )
links { get_backend_link_name( "sfml-window" ) }
end
else
if ( os.is_real("macosx") or os.is_real("windows") ) then
if ( os.is_real("macosx") or os.is_real("windows") or os.is_real("mingw32") ) then
if ( os.is_real("windows") ) then
links { "mingw32" }
links { "mingw32" }
if ( true == use_ee_icon ) then
linkoptions { "../../assets/icon/ee.res" }

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 2.7.1, 2013-06-23T19:11:40. -->
<!-- Written by QtCreator 2.7.1, 2013-06-25T01:46:56. -->
<qtcreator>
<data>
<variable>ProjectExplorer.Project.ActiveTarget</variable>

View File

@@ -1,5 +1,4 @@
#include <eepp/graphics/cframebuffer.hpp>
#include <eepp/graphics/ctexturefactory.hpp>
#include <eepp/graphics/cglobalbatchrenderer.hpp>
#include <eepp/window/cengine.hpp>
#include <eepp/graphics/renderer/cgl.hpp>

View File

@@ -798,7 +798,7 @@ cUIControl * cUIControl::OverFind( const eeVector2f& Point ) {
if ( NULL == pOver )
pOver = const_cast<cUIControl *>( reinterpret_cast<const cUIControl *>( this ) );
pOver = this;
}
}