Archive 17/01/2023.

Compile the android version of the APP?

hsl9999

Can compile the android version of the APP
Support for c + + 11?
how to modify make?

Sir_Nate

As a guess, I would say try the flag in cmake for allowing Urho to use C++11 (the URHO3D_C++11 option), and if that doesn’t work look for the g++ or c++ compiler flags and add -std=c++11 in the Makefile

TikariSakari

I have added my own project folder under the source-folder called myproj. In file Source/myproj/CMakeLists.txt I have added the following line to enable c++11 support on all the projects in myproj-folder.

#Enable C++11 Support
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")