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