enforced setting the app name and fixed default-appname bugs

added debug batch file for windows
improved project filters for executable: separated into engine and user sources
refactored version numbers, added them to the .rc file
changed /W2 to /W4
TORQUE_DEBUG,TORQUE_ENABLE_ASSERTS and TORQUE_DEBUG_GFX_MODE now automatically defined in debug mode
This commit is contained in:
Thomas Fischer 2014-03-20 05:34:45 +01:00
parent f3dbe07b9a
commit 36cc041254
7 changed files with 148 additions and 12 deletions

View file

@ -74,7 +74,10 @@
/// Define me to enable debug mode; enables a great number of additional
/// sanity checks, as well as making AssertFatal and AssertWarn do something.
/// This is usually defined by the build target.
#cmakedefine TORQUE_DEBUG
// TORQUE_DEBUG is now set dynamically and not here anymore
// #cmakedefine TORQUE_DEBUG
#cmakedefine DEBUG_SPEW
#cmakedefine TORQUE_DEBUG_GFX_MODE
@ -156,7 +159,9 @@
#endif
// Enables the C++ assert macros AssertFatal, AssertWarn, etc.
#ifndef TORQUE_ENABLE_ASSERTS
#define TORQUE_ENABLE_ASSERTS
#endif
#endif