Andy Mender
Andy Mender
I think it's a good idea to use `const` and `constexpr` wherever possible, both as a nod to other developers and a safety net for vars which shouldn't change :).
Big thanks for the quick response and for updating the tutorial! I think it's completely fair to support only one version of Ogre (1.13), as it looks like there's been...
Here are the steps I followed to build OGRE, MyGUI and StuntRally with GCC 9 - Download OGRE from [here](https://www.ogre3d.org/download/sdk/sdk-ogre) and build + install via cmake - If Bullet was...
Ah, I forgot to apply the defines from your tutorial, my bad! It builds with MyGUI 3.4.1 and OGRE 13.4.3 (GCC 9 used for all), but segfaults on start: ```...
I built OGRE, MyGUI and Stunt Rally in Debug mode. Here's the `gdb` run + backtrace: ```gdb gdb stuntrally GNU gdb (Ubuntu 9.2-0ubuntu1~20.04.1) 9.2 Copyright (C) 2020 Free Software Foundation,...
> I have bullet version 3.06 here on Debian 11. I have version 2.88 from the ubuntu 20.04 repos. I guess I could try building a higher version from source...
Just a heads-up that bullet 3.24 split its cmake target into multiple ones: ```cmake set ( BULLET_FOUND 1 ) set ( BULLET_USE_FILE "lib/cmake/bullet/UseBullet.cmake" ) set ( BULLET_DEFINITIONS "" ) set...
Same issues with bullet 3.06. The cmake setup of Stunt Rally is failing to find the `Bullet::Bullet` target: ```cmake CMake Error at source/CMakeLists.txt:79 (target_link_libraries): Target "stuntrally" links to: Bullet::Bullet but...
> boost::format already is used in various places in the code, so I'm not sure what this issue is really about... I found quite some places where it's still not...
> Can you give some specific examples where you think boost::format should be used instead of what's done now? I think in the `DebugLogger` calls like [here](https://github.com/freeorion/freeorion/blob/master/combat/CombatSystem.cpp#L244) where readability suffers...