summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/fix/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dev/examples/fix/CMakeLists.txt')
-rw-r--r--dev/examples/fix/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/dev/examples/fix/CMakeLists.txt b/dev/examples/fix/CMakeLists.txt
new file mode 100644
index 0000000..db8921b
--- /dev/null
+++ b/dev/examples/fix/CMakeLists.txt
@@ -0,0 +1,12 @@
+
+cmake_minimum_required(VERSION 3.15...3.31)
+
+project(
+ Fix
+ VERSION 1.0
+ LANGUAGES CXX)
+
+add_executable(Fix fix.cc)
+
+set_property(TARGET Fix PROPERTY CXX_STANDARD 20)
+target_include_directories(Fix PUBLIC ../../)