You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmonero/ext/restbed/cmake/modules/Findasio.cmake

13 lines
515 B

# Copyright 2013-2016, Corvusoft Ltd, All Rights Reserved.
find_path( asio_INCLUDE asio.hpp HINTS "${CMAKE_SOURCE_DIR}/ext/restbed/dependency/asio/asio/include" "/usr/include" "/usr/local/include" "/opt/local/include" )
if ( asio_INCLUDE )
set( ASIO_FOUND TRUE )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DASIO_STANDALONE=YES" )
message( STATUS "${Green}Found ASIO include at: ${asio_INCLUDE}${Reset}" )
else ( )
message( FATAL_ERROR "${Red}Failed to locate ASIO dependency.${Reset}" )
endif ( )