From 3dd85b65c7c899c9a2aa8f574423cc178afd3615 Mon Sep 17 00:00:00 2001
From: Martin Heistermann <git@mheistermann.de>
Date: Sat, 15 Feb 2025 19:08:28 +0100
Subject: [PATCH] add dummy cmake project

---
 .gitignore     | 1 +
 CMakeLists.txt | 4 ++++
 test.cc        | 6 ++++++
 3 files changed, 11 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 CMakeLists.txt
 create mode 100644 test.cc

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a0155cb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/build*/
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..87a2952
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,4 @@
+project(Test)
+
+add_executable(test test.cc)
+
diff --git a/test.cc b/test.cc
new file mode 100644
index 0000000..fd019bc
--- /dev/null
+++ b/test.cc
@@ -0,0 +1,6 @@
+#include <iostream>
+int main(int argc, char *argv[])
+{
+    std::cout << "Hello." << std::endl;
+    return 0;
+}
-- 
GitLab