mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-23 01:57:21 +03:00
Fix build config
This commit is contained in:
parent
0d9599fd52
commit
5f33056f5a
6 changed files with 12 additions and 12 deletions
|
|
@ -23,7 +23,7 @@ OPTION_REPLACE ARMCC -O2 -O3
|
||||||
ALWAYS_BUILD_AS_ARM
|
ALWAYS_BUILD_AS_ARM
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef SYMBIAN_3
|
#ifdef __SYMBIAN_3
|
||||||
SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5
|
SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5
|
||||||
STDCPP
|
STDCPP
|
||||||
MACRO RW_GL3
|
MACRO RW_GL3
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#undef SYMBIAN3
|
#undef __SYMBIAN3
|
||||||
#define S60V3
|
#define __S60V3
|
||||||
TARGET librw_gles1.lib
|
TARGET librw_gles1.lib
|
||||||
#include "librw.mmh"
|
#include "librw.mmh"
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#undef S60V3
|
#undef __S60V3
|
||||||
#define SYMBIAN_3
|
#define __SYMBIAN_3
|
||||||
TARGET librw_gles2.lib
|
TARGET librw_gles2.lib
|
||||||
#include "librw.mmh"
|
#include "librw.mmh"
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#undef SYMBIAN_3
|
#undef __SYMBIAN_3
|
||||||
#define S60V3
|
#define __S60V3
|
||||||
//TARGET re3_gles1.exe
|
//TARGET re3_gles1.exe
|
||||||
TARGET re3_gles1.exe
|
TARGET re3_gles1.exe
|
||||||
LIBRARY libstdcpp.lib
|
LIBRARY libstdcpp.lib
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#undef S60V3
|
#undef __S60V3
|
||||||
#define SYMBIAN_3
|
#define __SYMBIAN_3
|
||||||
TARGET re3.exe
|
TARGET re3.exe
|
||||||
LIBRARY libstdcppv5.lib
|
LIBRARY libstdcppv5.lib
|
||||||
LIBRARY libglesv2.lib
|
LIBRARY libglesv2.lib
|
||||||
|
|
|
||||||
|
|
@ -515,13 +515,13 @@ public:
|
||||||
|
|
||||||
SetFocus(ETrue);
|
SetFocus(ETrue);
|
||||||
|
|
||||||
#ifdef RW_GL3
|
#ifndef S60V3
|
||||||
Window().EnableAdvancedPointers();
|
Window().EnableAdvancedPointers();
|
||||||
#endif
|
#endif
|
||||||
EnableDragEvents();
|
EnableDragEvents();
|
||||||
ActivateL();
|
ActivateL();
|
||||||
|
|
||||||
#ifdef RW_GL3
|
#ifndef S60V3
|
||||||
// VC4 check
|
// VC4 check
|
||||||
VersionInfo::TPlatformVersion platformVersion;
|
VersionInfo::TPlatformVersion platformVersion;
|
||||||
VersionInfo::GetVersion(platformVersion);
|
VersionInfo::GetVersion(platformVersion);
|
||||||
|
|
@ -640,7 +640,7 @@ public:
|
||||||
// CCoeControl::HandlePointerEventL(aPointerEvent);
|
// CCoeControl::HandlePointerEventL(aPointerEvent);
|
||||||
// return;
|
// return;
|
||||||
// }
|
// }
|
||||||
#ifdef RW_GL3
|
#ifndef S60V3
|
||||||
const TAdvancedPointerEvent* advpointer = aPointerEvent.AdvancedPointerEvent();
|
const TAdvancedPointerEvent* advpointer = aPointerEvent.AdvancedPointerEvent();
|
||||||
int i = advpointer != NULL ? advpointer->PointerNumber() : 0;
|
int i = advpointer != NULL ? advpointer->PointerNumber() : 0;
|
||||||
#else
|
#else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue