Add GPLv2 license header
This commit is contained in:
parent
cfcb290322
commit
ee02eafe83
3 changed files with 38 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
||||||
# FLIR-GTK
|
# FLIR-GTK
|
||||||
|
|
||||||
GTK+ application for FLIR ONE USB thermal camera based on flir-v4l:
|
GTK+ application for FLIR ONE USB thermal camera based on flir-v4l:
|
||||||
|
Copyright (C) 2015-2016 Thomas <tomas123 @ EEVblog Electronics Community Forum>
|
||||||
https://github.com/fnoop/flirone-v4l2
|
https://github.com/fnoop/flirone-v4l2
|
||||||
|
|
||||||
|
|
||||||
|
|
19
cam-thread.c
19
cam-thread.c
|
@ -1,3 +1,22 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2015-2016 Thomas <tomas123 @ EEVblog Electronics Community Forum>
|
||||||
|
* Copyright (C) 2021 Nicole Faerber <nicole.faerber@dpin.de>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
// from main thread
|
// from main thread
|
||||||
|
|
20
flirgtk.c
20
flirgtk.c
|
@ -1,5 +1,21 @@
|
||||||
// gcc `pkg-config --cflags gtk+-3.0` -c flirgtk.c
|
/*
|
||||||
// gcc -o flirgtk flirgtk.o `pkg-config --libs gtk+-3.0`
|
* Copyright (C) 2021 Nicole Faerber <nicole.faerber@dpin.de>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue