Skip to content

Commit

Permalink
Adds python plugin folder to env file (qgis#3617)
Browse files Browse the repository at this point in the history
* Adds python plugin folder to env file

* Adds plugin path to build output
  • Loading branch information
SrNetoChan authored and havatv committed May 30, 2019
1 parent cbbe43c commit db70983
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions venv.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ ifneq ($(QGIS_PREFIX_PATH), "")
LD_LIBRARY_PATH := $(QGIS_PREFIX_PATH)/lib:$(LD_LIBRARY_PATH)
# For install folder
PYTHONPATH := $(QGIS_PREFIX_PATH)/share/qgis/python:$(PYTHONPATH)
PYTHONPATH := $(QGIS_PREFIX_PATH)/share/qgis/python/plugins:$(PYTHONPATH)
# For build output folder
PYTHONPATH := $(QGIS_PREFIX_PATH)/python:$(PYTHONPATH)
PYTHONPATH := $(QGIS_PREFIX_PATH)/python/plugins:$(PYTHONPATH)
endif

# Use sphinx from virtualenv
Expand Down

0 comments on commit db70983

Please sign in to comment.