mirror of
https://github.com/boostorg/beast.git
synced 2026-07-06 16:30:52 +02:00
24 lines
459 B
CMake
24 lines
459 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()
|
|
|
|
if (MINGW)
|
|
set_target_properties(lib-tests PROPERTIES COMPILE_FLAGS "-Wa,-mbig-obj")
|
|
endif()
|