Fix build config

This commit is contained in:
Shinovon 2026-05-09 04:06:58 +05:00
parent 0d9599fd52
commit 5f33056f5a
6 changed files with 12 additions and 12 deletions

View file

@ -23,7 +23,7 @@ OPTION_REPLACE ARMCC -O2 -O3
ALWAYS_BUILD_AS_ARM
#endif
#ifdef SYMBIAN_3
#ifdef __SYMBIAN_3
SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5
STDCPP
MACRO RW_GL3

View file

@ -1,4 +1,4 @@
#undef SYMBIAN3
#define S60V3
#undef __SYMBIAN3
#define __S60V3
TARGET librw_gles1.lib
#include "librw.mmh"

View file

@ -1,4 +1,4 @@
#undef S60V3
#define SYMBIAN_3
#undef __S60V3
#define __SYMBIAN_3
TARGET librw_gles2.lib
#include "librw.mmh"

View file

@ -1,5 +1,5 @@
#undef SYMBIAN_3
#define S60V3
#undef __SYMBIAN_3
#define __S60V3
//TARGET re3_gles1.exe
TARGET re3_gles1.exe
LIBRARY libstdcpp.lib

View file

@ -1,5 +1,5 @@
#undef S60V3
#define SYMBIAN_3
#undef __S60V3
#define __SYMBIAN_3
TARGET re3.exe
LIBRARY libstdcppv5.lib
LIBRARY libglesv2.lib

View file

@ -515,13 +515,13 @@ public:
SetFocus(ETrue);
#ifdef RW_GL3
#ifndef S60V3
Window().EnableAdvancedPointers();
#endif
EnableDragEvents();
ActivateL();
#ifdef RW_GL3
#ifndef S60V3
// VC4 check
VersionInfo::TPlatformVersion platformVersion;
VersionInfo::GetVersion(platformVersion);
@ -640,7 +640,7 @@ public:
// CCoeControl::HandlePointerEventL(aPointerEvent);
// return;
// }
#ifdef RW_GL3
#ifndef S60V3
const TAdvancedPointerEvent* advpointer = aPointerEvent.AdvancedPointerEvent();
int i = advpointer != NULL ? advpointer->PointerNumber() : 0;
#else