Skip to content
Snippets Groups Projects
Commit 2a4b2cc5 authored by Simon Oehrl's avatar Simon Oehrl
Browse files

Merge branch 'feature/#112_Add_websocket_dependencies_to_contra-config.cmake' into 'master'

Add websockets dependencies

Closes #112

See merge request VR-Group/in-situ-pipeline/contra!67
parents 5d33ec90 8a139b23
No related branches found
No related tags found
1 merge request!67Add websockets dependencies
......@@ -61,6 +61,15 @@ foreach(COMPONENT ${contra_FIND_COMPONENTS})
endif(NOT contra_FIND_QUIETLY)
continue()
endif(NOT Boost_FOUND)
elseif (${COMPONENT} STREQUAL "websockets")
find_package(Boost REQUIRED system)
find_package(Threads REQUIRED)
if (NOT Boost_FOUND)
if(NOT contra_FIND_QUIETLY)
message(SEND_ERROR "Did not find dependency for contra component `${COMPONENT}`: boost")
endif(NOT contra_FIND_QUIETLY)
continue()
endif(NOT Boost_FOUND)
endif ()
include(${COMPONENT_CONFIG_FILE})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment