* coroutines * string modified: * http: fixed a couple of bugs * strutils: renamed to os, it is now a header for some generic platform-indipendent code * tracelog: added option to not print newline at the end of a message + bug fixes
16 lines
No EOL
222 B
CMake
16 lines
No EOL
222 B
CMake
add_library(Colla STATIC
|
|
socket.c
|
|
tracelog.c
|
|
http.c
|
|
strstream.c
|
|
strview.c
|
|
str.c
|
|
coroutine.c
|
|
os.c
|
|
)
|
|
|
|
IF (WIN32)
|
|
target_link_libraries(Colla ws2_32.lib)
|
|
ELSE()
|
|
# posix
|
|
ENDIF() |