Skip to content

Commit

Permalink
Make sure linux plugin build has UI
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Mar 16, 2024
1 parent 77454e3 commit c405780
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
else
freetypepkgname="libfreetype-dev"
fi
apt-get install -yqq ${freetypepkgname} p7zip-full unzip wget xdg-user-dirs zip
apt-get install -yqq ${freetypepkgname} libgl1-mesa-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev p7zip-full unzip wget xdg-user-dirs zip
- name: Set up cache
id: cache
uses: actions/cache@v3
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
else
freetypepkgname="libfreetype-dev"
fi
apt-get install -yqq ${freetypepkgname} p7zip-full unzip wget xdg-user-dirs zip
apt-get install -yqq ${freetypepkgname} libgl1-mesa-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev p7zip-full unzip wget xdg-user-dirs zip
- name: Set up cache
id: cache
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ TARGETS += src/DPF/utils/lv2_ttl_generator$(APP_EXT)
# ---------------------------------------------------------------------------------------------------------------------

all: $(TARGETS)
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) NOOPT=true -C src/plugin
./utils/run.sh $(PAWPAW_TARGET) $(MAKE) HAVE_OPENGL=true NOOPT=true -C src/plugin
./utils/run.sh $(PAWPAW_TARGET) $(CURDIR)/src/DPF/utils/generate-ttl.sh build-plugin

clean:
Expand Down
3 changes: 2 additions & 1 deletion src/plugin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

export DISTRHO_NAMESPACE = DesktopDISTRHO
export DGL_NAMESPACE = DesktopDGL
export FILE_BROWSER_DISABLED = true
export NVG_FONT_TEXTURE_FLAGS = NVG_IMAGE_NEAREST

include ../DPF/Makefile.base.mk
Expand Down Expand Up @@ -48,7 +49,7 @@ BUILD_CXX_FLAGS += $(shell $(PKG_CONFIG) --cflags Qt5Core)
LINK_FLAGS += -ldl -lrt
endif

TARGETS = au clap lv2_sep vst2 vst3
TARGETS = features au clap lv2_sep vst2 vst3

# ---------------------------------------------------------------------------------------------------------------------

Expand Down

0 comments on commit c405780

Please sign in to comment.