mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
iOS: Fixed a linker error when compiling juce_events without juce_gui_basics
This commit is contained in:
parent
257e5e579b
commit
ceb410ca69
1 changed files with 2 additions and 2 deletions
|
|
@ -175,7 +175,7 @@ StringArray JUCE_CALLTYPE JUCEApplicationBase::getCommandLineParameterArray()
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#if JUCE_IOS
|
#if JUCE_IOS && JUCE_MODULE_AVAILABLE_juce_gui_basics
|
||||||
extern int juce_iOSMain (int argc, const char* argv[], void* classPtr);
|
extern int juce_iOSMain (int argc, const char* argv[], void* classPtr);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
@ -233,7 +233,7 @@ int JUCEApplicationBase::main (int argc, const char* argv[])
|
||||||
return juce_gtkWebkitMain (argc, argv);
|
return juce_gtkWebkitMain (argc, argv);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if JUCE_IOS
|
#if JUCE_IOS && JUCE_MODULE_AVAILABLE_juce_gui_basics
|
||||||
return juce_iOSMain (argc, argv, iOSCustomDelegate);
|
return juce_iOSMain (argc, argv, iOSCustomDelegate);
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue