Merge pull request #170 from cryi/CMakeLists

Added CMakeLists
This commit is contained in:
Alexey Melnichuk 2021-02-01 12:37:19 +03:00 committed by GitHub
commit 0bbc19525c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)