From f9bc90d009d7c96d97e4bfa7a5679e01dddd5dfd Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 28 Sep 2021 21:51:34 +0200 Subject: Created best-guess cmake stubs Structure of the project as whole is... questionable. It looks that the directories are intermingled even if they appear separated. This is a first guess to have at least something in place. --- FoundationEx/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 FoundationEx/CMakeLists.txt (limited to 'FoundationEx') diff --git a/FoundationEx/CMakeLists.txt b/FoundationEx/CMakeLists.txt new file mode 100644 index 0000000..8672619 --- /dev/null +++ b/FoundationEx/CMakeLists.txt @@ -0,0 +1,11 @@ +project(FoundationEx) +add_library( + FoundationEx + STATIC + MemDebug.cpp + Text.cpp + ) +target_include_directories( + FoundationEx + PUBLIC . + ) -- cgit v1.1