From 3f4e740c0dfec9b9adc3aaf3969db43eaead8f7c Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Wed, 18 May 2016 17:58:15 +0200 Subject: [PATCH] Add a CMakeLists file so the plugin can be installed --- CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CMakeLists.txt 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 +)