1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Renamed the experimental jucer as the Introjucer.

This commit is contained in:
Julian Storer 2011-03-08 11:41:28 +00:00
parent 6e76ba29ab
commit 82e8d68a5d
94 changed files with 187 additions and 169 deletions

View file

@ -0,0 +1,27 @@
/*
==============================================================================
This file was auto-generated by the Jucer!
It contains the basic startup code for a Juce application.
==============================================================================
*/
APPHEADERS
//==============================================================================
int main (int argc, char* argv[])
{
// This object makes sure that Juce is initialised and shut down correctly
// for the scope of this function call. Make sure this declaration is the
// first statement of this function.
const ScopedJuceInitialiser_NonGUI juceSystemInitialiser;
// ..your code goes here!
return 0;
}