Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « boost.example « cmake « other-builds « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abc8b37e2896b9bc5410ae86cf533e4d57d9f4d8 (plain)
1
2
3
4
5
6
7
cmake_minimum_required(VERSION 2.8)

find_package(Boost 1.36.0 REQUIRED COMPONENTS locale)

include_directories(${Boost_INCLUDE_DIRS})
add_executable(demo main.cpp)
target_link_libraries(demo ${Boost_LIBRARIES})