aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/haskell/haskell.pro
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/haskell/haskell.pro')
-rw-r--r--plugins/haskell/haskell.pro36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/haskell/haskell.pro b/plugins/haskell/haskell.pro
new file mode 100644
index 0000000..1201d4e
--- /dev/null
+++ b/plugins/haskell/haskell.pro
@@ -0,0 +1,36 @@
+DEFINES += HASKELL_LIBRARY
+
+# Haskell files
+
+SOURCES += haskellplugin.cpp
+
+HEADERS += haskellplugin.h \
+ haskell_global.h \
+ haskellconstants.h
+
+## uncomment to build plugin into user config directory
+## <localappdata>/plugins/<ideversion>
+## where <localappdata> is e.g.
+## "%LOCALAPPDATA%\QtProject\qtcreator" on Windows Vista and later
+## "$XDG_DATA_HOME/data/QtProject/qtcreator" or "~/.local/share/data/QtProject/qtcreator" on Linux
+## "~/Library/Application Support/QtProject/Qt Creator" on OS X
+#USE_USER_DESTDIR = yes
+
+###### If the plugin can be depended upon by other plugins, this code needs to be outsourced to
+###### <dirname>_dependencies.pri, where <dirname> is the name of the directory containing the
+###### plugin's sources.
+
+QTC_PLUGIN_NAME = Haskell
+QTC_LIB_DEPENDS += \
+ # nothing here at this time
+
+QTC_PLUGIN_DEPENDS += \
+ coreplugin
+
+QTC_PLUGIN_RECOMMENDS += \
+ # optional plugin dependencies. nothing here at this time
+
+###### End _dependencies.pri contents ######
+
+include(config.pri)
+include($$IDE_SOURCE_TREE/src/qtcreatorplugin.pri)