aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/CMakeLists.txt4
-rw-r--r--frontend/main.cpp7
2 files changed, 11 insertions, 0 deletions
diff --git a/frontend/CMakeLists.txt b/frontend/CMakeLists.txt
new file mode 100644
index 0000000..dd74089
--- /dev/null
+++ b/frontend/CMakeLists.txt
@@ -0,0 +1,4 @@
+target_sources(main PUBLIC
+ main.cpp
+)
+
diff --git a/frontend/main.cpp b/frontend/main.cpp
new file mode 100644
index 0000000..acaf028
--- /dev/null
+++ b/frontend/main.cpp
@@ -0,0 +1,7 @@
+#include <cstdlib>
+#include <cstdio>
+
+int main() {
+ return EXIT_SUCCESS;
+}
+