Updating the JUCE Introjucer project file

This commit is contained in:
Jonathan Thomas
2015-09-23 00:53:28 -05:00
parent 51083bc3dd
commit 8f227b2fcb
3 changed files with 16 additions and 1 deletions

View File

@@ -33,6 +33,11 @@
#define JUCE_MODULE_AVAILABLE_juce_gui_basics 1
#define JUCE_MODULE_AVAILABLE_juce_gui_extra 1
//==============================================================================
#ifndef JUCE_STANDALONE_APPLICATION
#define JUCE_STANDALONE_APPLICATION 0
#endif
//==============================================================================
// juce_audio_devices flags:
@@ -44,6 +49,10 @@
//#define JUCE_WASAPI
#endif
#ifndef JUCE_WASAPI_EXCLUSIVE
//#define JUCE_WASAPI_EXCLUSIVE
#endif
#ifndef JUCE_DIRECTSOUND
//#define JUCE_DIRECTSOUND
#endif
@@ -129,6 +138,10 @@
//#define JUCE_INCLUDE_ZLIB_CODE
#endif
#ifndef JUCE_USE_CURL
//#define JUCE_USE_CURL
#endif
//==============================================================================
// juce_graphics flags:

View File

@@ -31,11 +31,13 @@
using namespace juce;
#endif
#if ! JUCE_DONT_DECLARE_PROJECTINFO
namespace ProjectInfo
{
const char* const projectName = "libopenshot-audio";
const char* const versionString = "0.0.1";
const int versionNumber = 0x1;
}
#endif
#endif // __APPHEADERFILE_IIUU5J__