colla/CMakeLists.txt
snarmph bb5cce33f0 added:
* 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
2021-10-05 17:57:27 +02:00

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()