first commit

This commit is contained in:
snarmph 2021-09-30 17:42:28 +02:00
commit efd4d9c750
13 changed files with 1950 additions and 0 deletions

14
CMakeLists.txt Normal file
View file

@ -0,0 +1,14 @@
add_library(Colla STATIC
socket.c
tracelog.c
http.c
strstream.c
strview.c
strutils.c
)
IF (WIN32)
target_link_libraries(Common ws2_32.lib)
ELSE()
# posix
ENDIF()