aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-06-23 22:33:05 +0100
committerLexi Winter <lexi@le-fay.org>2025-06-23 22:33:05 +0100
commit1c57eacab858c41cd5565d468982094e46312b86 (patch)
tree6fd1b0f1d035663e12863124a0b102bfb98fe10e /CMakeLists.txt
downloadlfvm-1c57eacab858c41cd5565d468982094e46312b86.tar.gz
lfvm-1c57eacab858c41cd5565d468982094e46312b86.tar.bz2
initial commit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..e03f479
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,19 @@
+# This source code is released into the public domain.
+
+cmake_minimum_required(VERSION 3.28)
+
+project(lfvm)
+
+set(CMAKE_CXX_STANDARD 26)
+
+find_package(PkgConfig REQUIRED)
+
+add_compile_options(-W)
+add_compile_options(-Wall)
+add_compile_options(-Wextra)
+add_compile_options(-Werror)
+add_compile_options(-Wpedantic)
+
+add_subdirectory(nihil)
+add_subdirectory(liblfvm)
+add_subdirectory(lfvm)