Skip to content
Snippets Groups Projects
Makefile 7.94 KiB
#/***************************************************************************
# getnib
#
# Hent alle of-prosjekt i utsnitt
#							 -------------------
#		begin				: 2021-12-22
#		git sha				: $Format:%H$
#		copyright			: (C) 2021 by ban, NIBIO
#		email				: ban@nibio.no
# ***************************************************************************/
#
#/***************************************************************************
# *																		 *
# *   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.								   *
# *																		 *
# ***************************************************************************/

#################################################
# Edit the following to match your sources lists
#################################################


#Add iso code for any locales you want to support here (space separated)
# default is no locales
# LOCALES = af
LOCALES =

# If locales are enabled, set the name of the lrelease binary on your system. If
# you have trouble compiling the translations, you may have to specify the full path to
# lrelease
#LRELEASE = lrelease
#LRELEASE = lrelease-qt4


# translation
SOURCES = \
	__init__.py \
	get_nib.py get_nib_dialog.py

PLUGINNAME = get_nib

PY_FILES = \
	__init__.py \
	get_nib.py get_nib_dialog.py

UI_FILES = get_nib_dialog_base.ui

EXTRAS = metadata.txt icon.png

EXTRA_DIRS =

COMPILED_RESOURCE_FILES = resources.py

PEP8EXCLUDE=pydev,resources.py,conf.py,third_party,ui

# QGISDIR points to the location where your plugin should be installed.
# This varies by platform, relative to your HOME directory:
#	* Linux:
#	  .local/share/QGIS/QGIS3/profiles/default/python/plugins/
#	* Mac OS X:
#	  Library/Application Support/QGIS/QGIS3/profiles/default/python/plugins
#	* Windows:
#	  AppData\Roaming\QGIS\QGIS3\profiles\default\python\plugins'

QGISDIR=C:\Users\abni\AppData/Roaming/QGIS/QGIS3/profiles/default/python/plugins

#################################################