mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 10:35:50 +00:00
19 lines
337 B
CMake
19 lines
337 B
CMake
# Part of Beast
|
|
|
|
GroupSources(extras/beast beast)
|
|
GroupSources(include/beast beast)
|
|
GroupSources(test "/")
|
|
|
|
add_executable (lib-tests
|
|
${BEAST_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()
|