Skip to content

Commit

Permalink
Version 1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlbeer committed Mar 22, 2023
1 parent c8e77ce commit 542848d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

CC ?= gcc
PREFIX ?= /usr/local
SDL_CFLAGS != pkg-config --cflags sdl
SDL_LIBS != pkg-config --libs sdl
SDL_CFLAGS := $(shell pkg-config --cflags sdl 2>&1)
SDL_LIBS = $(shell pkg-config --libs sdl)

LIB_VERSION = 1.0
LIB_VERSION = 1.2

CFLAGS ?= -O3 -Wall -fPIC
QUIRC_CFLAGS = -Ilib $(CFLAGS) $(SDL_CFLAGS)
Expand All @@ -35,8 +35,8 @@ DEMO_UTIL_OBJ = \
demo/dthash.o \
demo/demoutil.o

OPENCV_CFLAGS != pkg-config --cflags opencv4
OPENCV_LIBS != pkg-config --libs opencv4
OPENCV_CFLAGS := $(shell pkg-config --cflags opencv4 2>&1)
OPENCV_LIBS = $(shell pkg-config --libs opencv4)
QUIRC_CXXFLAGS = $(QUIRC_CFLAGS) $(OPENCV_CFLAGS) --std=c++17

.PHONY: all v4l sdl opencv install uninstall clean
Expand Down

0 comments on commit 542848d

Please sign in to comment.