mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00
10 lines
217 B
CMake
10 lines
217 B
CMake
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)
|
|
|