mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
10 lines
210 B
Text
10 lines
210 B
Text
![]() |
cmake_minimum_required(VERSION 2.8)
|
||
|
|
||
|
project(lws-minimal-ws-server C)
|
||
|
|
||
|
set(SAMP lws-minimal-ws-server)
|
||
|
set(SRCS minimal-ws-server.c)
|
||
|
|
||
|
add_executable(${SAMP} ${SRCS})
|
||
|
target_link_libraries(${SAMP} -lwebsockets)
|