The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4KB

  1. # ==============================================================================
  2. #
  3. # This file is part of the JUCE library.
  4. # Copyright (c) 2020 - Raw Material Software Limited
  5. #
  6. # JUCE is an open source library subject to commercial or open-source
  7. # licensing.
  8. #
  9. # By using JUCE, you agree to the terms of both the JUCE 6 End-User License
  10. # Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
  11. #
  12. # End User License Agreement: www.juce.com/juce-6-licence
  13. # Privacy Policy: www.juce.com/juce-privacy-policy
  14. #
  15. # Or: You may also use this code under the terms of the GPL v3 (see
  16. # www.gnu.org/licenses).
  17. #
  18. # JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  19. # EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  20. # DISCLAIMED.
  21. #
  22. # ==============================================================================
  23. juce_add_gui_app(NetworkGraphicsDemo)
  24. juce_generate_juce_header(NetworkGraphicsDemo)
  25. target_sources(NetworkGraphicsDemo PRIVATE Source/Main.cpp)
  26. target_compile_definitions(NetworkGraphicsDemo PRIVATE
  27. JUCE_USE_CURL=0 JUCE_WEB_BROWSER=0)
  28. target_link_libraries(NetworkGraphicsDemo PRIVATE
  29. juce::juce_audio_utils
  30. juce::juce_cryptography
  31. juce::juce_opengl
  32. juce::juce_osc
  33. juce::juce_recommended_config_flags
  34. juce::juce_recommended_lto_flags
  35. juce::juce_recommended_warning_flags)