mirror of
https://github.com/boostorg/beast.git
synced 2026-05-05 04:04:30 +02:00
16 lines
239 B
CMake
16 lines
239 B
CMake
# Part of Beast
|
|
|
|
GroupSources(include/beast beast)
|
|
|
|
GroupSources(example/http-server-small "/")
|
|
|
|
add_executable (http-server-small
|
|
${BEAST_INCLUDES}
|
|
http_server_small.cpp
|
|
)
|
|
|
|
target_link_libraries(http-server-small
|
|
Beast
|
|
)
|
|
|