Browse Source

Add a CMakeLists file so the plugin can be installed

Arjen Hiemstra 8 years ago
parent
commit
3f4e740c0d
1 changed files with 12 additions and 0 deletions
  1. 12 0
      CMakeLists.txt

+ 12 - 0
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
+)