linux sockets opt-in again. we're breaking some other stuff anyway, so better do it well.

This commit is contained in:
Aart Stuurman 2018-01-23 19:27:11 +01:00
parent 715b683867
commit 271cb5b60d
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1)
project(amqpcpp) project(amqpcpp)
# build options # build options
option(BUILD_PURE "build in pure mode" OFF) option(LINUX_TCP "Build linux sockets implementation" OFF)
# set output directory # set output directory
set(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin) set(LIBRARY_OUTPUT_PATH ${CMAKE_SOURCE_DIR}/bin)
@ -29,7 +29,7 @@ endmacro()
# add source files # add source files
add_subdirectory(src) add_subdirectory(src)
if(NOT NO_LINUX_TCP) if(LINUX_TCP)
add_subdirectory(src/linux_tcp) add_subdirectory(src/linux_tcp)
endif() endif()