hsl9999
Can compile the android version of the APP
Support for c + + 11?
how to modify make?
Can compile the android version of the APP
Support for c + + 11?
how to modify make?
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
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")