Browse Source

IAP: Fixed a compiler error on linux and windows

tags/2021-05-28
hogliux 8 years ago
parent
commit
803800376b
1 changed files with 8 additions and 5 deletions
  1. +8
    -5
      modules/juce_product_unlocking/juce_product_unlocking.cpp

+ 8
- 5
modules/juce_product_unlocking/juce_product_unlocking.cpp View File

@@ -50,12 +50,15 @@
namespace juce
{
#if JUCE_ANDROID
#include "native/juce_android_InAppPurchases.cpp"
#elif JUCE_IOS
#include "native/juce_ios_InAppPurchases.cpp"
#endif
#if JUCE_ANDROID || JUCE_IOS
#if JUCE_ANDROID
#include "native/juce_android_InAppPurchases.cpp"
#elif JUCE_IOS
#include "native/juce_ios_InAppPurchases.cpp"
#endif
#include "in_app_purchases/juce_InAppPurchases.cpp"
#endif
#include "marketplace/juce_OnlineUnlockStatus.cpp"


Loading…
Cancel
Save