Menu

[r224]: / branches / http-server / CMakeLists.txt  Maximize  Restore  History

Download this file

11 lines (10 with data), 281 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
cmake_minimum_required(VERSION 2.6)
project(CPP-NETLIB)
find_package( Boost 1.41.0 )
if (Boost_FOUND)
set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTI_THREADED ON)
include_directories(${Boost_INCLUDE_DIRS})
endif()
enable_testing()
add_subdirectory(libs/network/test)