added CMakeLists

This commit is contained in:
cryi 2021-01-31 13:16:13 +01:00
parent d27a1d3d0d
commit 8b1952c429

8
CMakeLists.txt Normal file
View File

@ -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)