Skip to content

Commit 8b1952c

Browse files
committed
added CMakeLists
1 parent d27a1d3 commit 8b1952c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
cmake_minimum_required (VERSION 2.6)
2+
project (lcurl)
3+
4+
file(GLOB lcurl_sources ./src/**.c)
5+
SET(lcurl ${lcurl_sources})
6+
7+
ADD_LIBRARY (lcurl ${lcurl})
8+
TARGET_LINK_LIBRARIES (lcurl)

0 commit comments

Comments
 (0)