Skip to content

Commit

Permalink
release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-courtis committed Feb 22, 2022
1 parent 1112a02 commit b0c2cdd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions config.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION ?= "1.4.1-SNAPSHOT"
VERSION ?= "1.4.0"

PREFIX ?= /usr/local
PREFIX_ETC ?= /usr/local
Expand All @@ -16,8 +16,10 @@ CXXFLAGS += $(COMPFLAGS) -std=gnu++17

LDFLAGS +=

LDLIBS += -lwayland-client -lyaml-cpp -linput -ludev -lstdc++
PKGS = wayland-client yaml-cpp libinput libudev
CFLAGS += $(foreach p,$(PKGS),$(shell pkg-config --cflags $(p)))
LDLIBS += $(foreach p,$(PKGS),$(shell pkg-config --libs $(p)))

CC = gcc
CXX = g++
CC ?= gcc
CXX ?= g++

0 comments on commit b0c2cdd

Please sign in to comment.