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

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLane Schwartz <dowobeha@gmail.com>2013-09-06 21:39:46 +0400
committerLane Schwartz <dowobeha@gmail.com>2013-09-06 21:39:46 +0400
commit226031ecf6ea542984fb5e84c5773d11b5366418 (patch)
tree67b19bd85c135aa86db9036a09c6bd4f04b17a9e /biconcor/CMakeLists.txt
parentaddc8be211da1c94a1829197484cd90c3c730564 (diff)
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.
Diffstat (limited to 'biconcor/CMakeLists.txt')
-rw-r--r--biconcor/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/biconcor/CMakeLists.txt b/biconcor/CMakeLists.txt
new file mode 100644
index 000000000..475ed7501
--- /dev/null
+++ b/biconcor/CMakeLists.txt
@@ -0,0 +1,5 @@
+project(biconcor)
+
+FILE(GLOB biconcor_source *.cpp)
+
+add_executable(biconcor ${biconcor_source})