From 6781cee55a4e7f232eae3e5f2a652045412339ae Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Sat, 26 Oct 2024 17:26:36 +0200 Subject: use cmake instead of make --- frontend/CMakeLists.txt | 4 ++++ frontend/main.cpp | 7 +++++++ 2 files changed, 11 insertions(+) create mode 100644 frontend/CMakeLists.txt create mode 100644 frontend/main.cpp (limited to 'frontend') 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 +#include + +int main() { + return EXIT_SUCCESS; +} + -- cgit v1.2.3