summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-11-24 11:49:30 +0100
committerxengineering <me@xengineering.eu>2024-11-24 11:49:30 +0100
commitc6eb38e73147d302a7ca5ed08a3ccda6d2ea6d29 (patch)
tree5cb1fce680ec6ab6aafc9d3808b566da23ee44f8
parent25105b2123963ba5c272ddc911b32a0a2b011cc9 (diff)
downloadgraphics-inkscape-c6eb38e73147d302a7ca5ed08a3ccda6d2ea6d29.tar
graphics-inkscape-c6eb38e73147d302a7ca5ed08a3ccda6d2ea6d29.tar.zst
graphics-inkscape-c6eb38e73147d302a7ca5ed08a3ccda6d2ea6d29.zip
cmake: Add minimal CMakeLists.txt starting point
This specifies the minimal CMake version and defines the project name. Furthermore C and CXX language support is disabled since this is not needed here.
-rw-r--r--CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..8b7649a
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,3 @@
+cmake_minimum_required(VERSION 3.10)
+
+project(art-inkscape LANGUAGES NONE)