mosesdecoder/moses/CMakeLists.txt
Lane Schwartz 226031ecf6 Checking in examples of CMake files.
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.
2013-09-06 13:39:46 -04:00

14 lines
473 B
CMake

project(moses)
FILE(GLOB source_moses *.cpp)
FILE(GLOB source_moses_ff FF/*.cpp)
FILE(GLOB source_moses_ff_lexicalReordering FF/LexicalReordering/*.cpp)
FILE(GLOB source_moses_ff_osm FF/OSM-Feature/*.cpp)
FILE(GLOB source_moses_lm LM/*.cpp)
FILE(GLOB source_moses_tm TranslationModel/*.cpp)
FILE(GLOB source_moses_tm_compactPT TranslationModel/CompactPT/*.cpp)
FILE(GLOB source_moses_tm_cky TranslationModel/CKYPlusParser/*.cpp)
add_library(biconcor ${biconcor_source})