diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-04-18 22:01:36 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-04-18 22:02:06 +0200 |
commit | 89e61194083b1085c9a4088305ae72bf79bece1f (patch) | |
tree | f6ca0ab2006fb191dd4b350350d7227ce4b8661b /Makefile | |
parent | 27093f569743eff0722da30bd464a991e2e68ffb (diff) | |
download | cv-89e61194083b1085c9a4088305ae72bf79bece1f.tar.gz cv-89e61194083b1085c9a4088305ae72bf79bece1f.tar.bz2 cv-89e61194083b1085c9a4088305ae72bf79bece1f.zip |
gauss_cv: Read path to ui-file from argv[0]
So that gauss_cv doesnt need to be started from its folder.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,8 +19,8 @@ capture_LIBS=$(shell pkg-config --libs gtk+-3.0 opencv glib-2.0) unvignette_CFLAGS=$(shell pkg-config --cflags cairo) unvignette_LIBS=$(shell pkg-config --libs cairo) -lm -gauss_cv_CFLAGS=$(shell pkg-config --cflags gtk+-3.0 gmodule-2.0 opencv) -gauss_cv_LIBS=$(shell pkg-config --libs gtk+-3.0 gmodule-2.0 opencv) +gauss_cv_CFLAGS=$(shell pkg-config --cflags gtk+-3.0 glib-2.0 gmodule-2.0 opencv) +gauss_cv_LIBS=$(shell pkg-config --libs gtk+-3.0 glib-2.0 gmodule-2.0 opencv) PROGS = wimmel wimmel_gl roi capture unvignette gauss_cv OBJS = $(PROGS:=.o) util.o |