mirror of
https://github.com/boostorg/beast.git
synced 2026-04-29 02:03:21 +02:00
18 lines
341 B
CMake
18 lines
341 B
CMake
# Part of Beast
|
|
|
|
GroupSources(include/beast beast)
|
|
GroupSources(example/common common)
|
|
GroupSources(example/http-server-threaded "/")
|
|
|
|
add_executable (http-server-threaded
|
|
${BEAST_INCLUDES}
|
|
${COMMON_INCLUDES}
|
|
http_server_threaded.cpp
|
|
)
|
|
|
|
target_link_libraries(http-server-threaded
|
|
Beast
|
|
${Boost_FILESYSTEM_LIBRARY}
|
|
)
|
|
|