about summary refs log tree commit diff stats
path: root/archive/2025/summer/bsc_karidas/cmake/examples.cmake
diff options
context:
space:
mode:
authorDimitris <dimstav23@gmail.com>2025-07-15 15:11:36 +0200
committerGitHub <noreply@github.com>2025-07-15 15:11:36 +0200
commit73e505f04d17eba36c41fce7b48bc4d6884b8fd0 (patch)
tree44b5f4627309a48d6f22b54bb2ad9a2976e8601b /archive/2025/summer/bsc_karidas/cmake/examples.cmake
parentca92e7ad181a02890496872012ecc6c1d08b1658 (diff)
parentd8c365681a41961ebe2daea5701a4d56f5400d1d (diff)
downloadresearch-work-archive-artifacts-73e505f04d17eba36c41fce7b48bc4d6884b8fd0.tar.gz
research-work-archive-artifacts-73e505f04d17eba36c41fce7b48bc4d6884b8fd0.zip
Merge pull request #6 from chriskari/upload-artifacts
Add bsc_karidas
Diffstat (limited to 'archive/2025/summer/bsc_karidas/cmake/examples.cmake')
-rw-r--r--archive/2025/summer/bsc_karidas/cmake/examples.cmake16
1 files changed, 16 insertions, 0 deletions
diff --git a/archive/2025/summer/bsc_karidas/cmake/examples.cmake b/archive/2025/summer/bsc_karidas/cmake/examples.cmake
new file mode 100644
index 000000000..40aa8823f
--- /dev/null
+++ b/archive/2025/summer/bsc_karidas/cmake/examples.cmake
@@ -0,0 +1,16 @@
+set(EXAMPLE_SOURCES
+    examples/main.cpp
+)
+
+add_executable(logging_example ${EXAMPLE_SOURCES})
+
+target_link_libraries(logging_example
+    PRIVATE
+    GDPR_Logging_lib
+)
+
+target_include_directories(logging_example
+    PRIVATE
+    ${CMAKE_CURRENT_SOURCE_DIR}/include
+    ${CMAKE_CURRENT_SOURCE_DIR}/external/concurrentqueue
+)