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.

42 lines
945B

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX, Christopher Arndt, and Patrick Desaulniers
  5. #
  6. # --------------------------------------------------------------
  7. # Project name, used for binaries
  8. NAME = d_ImGuiSimpleGain
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. PluginSimpleGain.cpp
  13. FILES_UI = \
  14. UISimpleGain.cpp \
  15. ../../../DPF-Widgets/opengl/DearImGui.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../../Makefile.plugins.mk
  19. # path to DPF-Widgets
  20. BUILD_CXX_FLAGS += -I../../../DPF-Widgets/opengl/
  21. # --------------------------------------------------------------
  22. # Enable all selected plugin types
  23. TARGETS += jack lv2_sep vst2 vst3
  24. ifeq ($(HAVE_LIBLO),true)
  25. TARGETS += dssi
  26. endif # HAVE_LIBLO
  27. all: $(TARGETS)
  28. # --------------------------------------------------------------