From 8b1952c429953acefbbd870cd908cc82e2175b23 Mon Sep 17 00:00:00 2001 From: cryi Date: Sun, 31 Jan 2021 13:16:13 +0100 Subject: [PATCH] added CMakeLists --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..fcd5b73 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required (VERSION 2.6) +project (lcurl) + +file(GLOB lcurl_sources ./src/**.c) +SET(lcurl ${lcurl_sources}) + +ADD_LIBRARY (lcurl ${lcurl}) +TARGET_LINK_LIBRARIES (lcurl) \ No newline at end of file