Skip to content

Commit 0bbc195

Browse files
authored
Merge pull request #170 from cryi/CMakeLists
Added CMakeLists
2 parents d27a1d3 + 8b1952c commit 0bbc195

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)