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.

31 lines
992B

  1. # ==============================================================================
  2. #
  3. # This file is part of the JUCE 6 technical preview.
  4. # Copyright (c) 2020 - ROLI Ltd.
  5. #
  6. # You may use this code under the terms of the GPL v3
  7. # (see www.gnu.org/licenses).
  8. #
  9. # For this technical preview, this file is not subject to commercial licensing.
  10. #
  11. # JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  12. # EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  13. # DISCLAIMED.
  14. #
  15. # ==============================================================================
  16. juce_add_gui_app(NetworkGraphicsDemo)
  17. juce_generate_juce_header(NetworkGraphicsDemo)
  18. target_sources(NetworkGraphicsDemo PRIVATE Source/Main.cpp)
  19. target_compile_definitions(NetworkGraphicsDemo PRIVATE
  20. JUCE_USE_CURL=0 JUCE_WEB_BROWSER=0)
  21. target_link_libraries(NetworkGraphicsDemo PRIVATE
  22. juce::juce_audio_utils
  23. juce::juce_cryptography
  24. juce::juce_opengl
  25. juce::juce_osc)