Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <ahiemstra@heimr.nl>2016-05-18 18:58:15 +0300
committerArjen Hiemstra <ahiemstra@heimr.nl>2016-05-18 18:58:15 +0300
commit3f4e740c0dfec9b9adc3aaf3969db43eaead8f7c (patch)
treed64f1bab03c0bfcba27d7f9c12a371a3938c9103 /CMakeLists.txt
parent2345289a4e64d0d25859e5e8e1a0e76b94144123 (diff)
Add a CMakeLists file so the plugin can be installed
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000000..906af9910c
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,12 @@
+project(JediWifiPrintingPlugin)
+cmake_minimum_required(VERSION 2.8.12)
+
+install(FILES
+ __init__.py
+ HttpUploadDataStream.py
+ NetworkPrinterOutputDevice.py
+ NetworkPrinterOutputDevicePlugin.py
+ LICENSE
+ README.md
+ DESTINATION lib/cura/plugins/JediWifiPrintingPlugin
+)