| 1234567891011121314 |
- How to start:
- 1. Download and install Marmalade. http://www.madewithmarmalade.com/
- 2. Go to oxygine-framework/examples folder
- 3. Double click on examples/Demo/proj.marmalade/demo.mkb
- 4. Select x86 debug configuration
- 5. Build and run!
- * If you see build error:
- d:/marmalade/7.4/s3e/h/std/math_gcc.h(40): error : reference to 'log' is ambiguous (col 47)
- then open math_gcc.h, find line with error:
- static inline double log2(double x) { return (log(x) / _M_LOG2_E); }
- and change it to:
- static inline double log2(double x) { return (::log(x) / _M_LOG2_E); }
|