Skip to content

Commit

Permalink
detect correct paths for liblo
Browse files Browse the repository at this point in the history
  • Loading branch information
gisogrimm committed Oct 20, 2024
1 parent 163aefd commit 5d7aa6f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ all: build bin
pack: all
$(MAKE) -C packaging

CXXFLAGS += -std=c++11
LDLIBS += -llo -llsl
LO_CFLAGS := $(shell pkg-config --cflags liblo)
LO_LIBS := $(shell pkg-config --libs liblo)

CXXFLAGS += -std=c++11 $(LO_CFLAGS)
LDLIBS += $(LO_LIBS) -llsl

build:
mkdir -p $@
Expand Down

0 comments on commit 5d7aa6f

Please sign in to comment.