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