From 4ee88984fcca86c5b0c9c4bbb7e9148c7d2fe9db Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sun, 6 Aug 2023 16:43:57 +0200 Subject: Add hello world example --- examples/hello/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 examples/hello/CMakeLists.txt (limited to 'examples/hello/CMakeLists.txt') diff --git a/examples/hello/CMakeLists.txt b/examples/hello/CMakeLists.txt new file mode 100644 index 0000000..c22ab33 --- /dev/null +++ b/examples/hello/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.13) +project(hello C) +add_executable(hello main.c) +target_link_libraries(${PROJECT_NAME} PRIVATE slweb dynstr) -- cgit v1.2.3