colla/CMakeLists.txt
2021-09-30 17:42:28 +02:00

14 lines
No EOL
201 B
CMake

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