DISTRHO Plugin Framework
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.

46 lines
946B

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX
  5. #
  6. # --------------------------------------------------------------
  7. # Project name, used for binaries
  8. NAME = d_embedextui
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. EmbedExternalExamplePlugin.cpp
  13. FILES_UI = \
  14. EmbedExternalExampleUI.cpp
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. USE_WEB_VIEW = true
  18. UI_TYPE = external
  19. include ../../Makefile.plugins.mk
  20. ifeq ($(MACOS),true)
  21. BUILD_CXX_FLAGS += -ObjC++
  22. # else ifeq ($(WINDOWS),true)
  23. # BUILD_CXX_FLAGS += -std=gnu++17
  24. endif
  25. # --------------------------------------------------------------
  26. # Enable all possible plugin types
  27. TARGETS += jack
  28. TARGETS += dssi
  29. TARGETS += lv2_sep
  30. TARGETS += vst2
  31. TARGETS += vst3
  32. all: $(TARGETS)
  33. # --------------------------------------------------------------