First working GTK+ window with pretty fast update of the IR cam frames

This commit is contained in:
Nicole Faerber 2021-01-16 23:56:24 +01:00
parent 39f9bf67a2
commit cfcb290322
17 changed files with 896 additions and 53 deletions

View file

@ -1,8 +1,8 @@
CC=gcc
CFLAGS=-O2 -Wall `pkg-config --cflags gtk+-3.0`
LIBS=`pkg-config --libs gtk+-3.0`
CFLAGS=-O2 -Wall -D_REENTRANT `pkg-config --cflags gtk+-3.0` `pkg-config --cflags libusb-1.0`
LIBS=`pkg-config --libs gtk+-3.0` `pkg-config --libs libusb-1.0` -lm
OBJ=flirgtk.o
OBJ=flirgtk.o cam-thread.o
PRG=flirgtk
all: $(PRG)