1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-14 00:14:18 +00:00

Introjucer: added a JUCE_DONT_DECLARE_PROJECTINFO guard flag around the auto-generated ProjectInfo namespace, in case you need to avoid declaring it for some reason.

This commit is contained in:
jules 2014-08-28 16:53:58 +01:00
parent 300029971a
commit ee9531dd53
8 changed files with 16 additions and 0 deletions

View file

@ -22,11 +22,13 @@
using namespace juce;
#endif
#if ! JUCE_DONT_DECLARE_PROJECTINFO
namespace ProjectInfo
{
const char* const projectName = "BinaryBuilder";
const char* const versionString = "1.0.0";
const int versionNumber = 0x10000;
}
#endif
#endif // __APPHEADERFILE_3T6YQETY1__