mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
20 lines
361 B
CMake
20 lines
361 B
CMake
# Part of Beast
|
|
|
|
GroupSources(extras/beast extras)
|
|
GroupSources(include/beast beast)
|
|
GroupSources(test "/")
|
|
|
|
add_executable (lib-tests
|
|
${BEAST_INCLUDES}
|
|
${EXTRAS_INCLUDES}
|
|
../extras/beast/unit_test/main.cpp
|
|
core.cpp
|
|
http.cpp
|
|
version.cpp
|
|
websocket.cpp
|
|
)
|
|
|
|
if (NOT WIN32)
|
|
target_link_libraries(lib-tests ${Boost_LIBRARIES})
|
|
endif()
|