summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-25 09:15:08 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-25 09:15:08 +0100
commite101c9a779a8df023973be161453994fe2aa6346 (patch)
treeeac723ee0404357844adaf8d2e15d3a0cc99480f /examples
parent67670dd3be23a731e3ac4156c36e873102159042 (diff)
feat(lib): Introduce varadic arguments by reference instead of copying
them. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'examples')
-rw-r--r--examples/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
new file mode 100644
index 0000000..0ba445b
--- /dev/null
+++ b/examples/CMakeLists.txt
@@ -0,0 +1,12 @@
+
+cmake_minimum_required(VERSION 3.15...3.31)
+
+project(
+ StrCheckusm
+ VERSION 1.0
+ LANGUAGES CXX)
+
+add_executable(StrCheckusm str_checksum.cc)
+
+set_property(TARGET StrCheckusm PROPERTY CXX_STANDARD 20)
+target_include_directories(StrCheckusm PUBLIC ../lib)