mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 05:55:02 +03:00
226031ecf6
The example in contrib works, as does the one in biconcor. The examples in lm and moses don't work at the moment, but checking them in anyway as a starting point for any potential work on them next week during the MT Marathon.
8 lines
212 B
CMake
8 lines
212 B
CMake
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})
|