Files
xahaud/test/CMakeLists.txt
Vinnie Falco e0956c36c1 Tidy up core sources:
The core headers are moved to their own directory (but remain in
the same namespace).
2016-05-10 13:41:28 -04:00

19 lines
338 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(core-tests ${Boost_LIBRARIES})
endif()