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:
authorKenneth Heafield <github@kheafield.com>2012-09-24 21:30:51 +0400
committerKenneth Heafield <github@kheafield.com>2012-09-24 21:30:51 +0400
commit4faab6c68fb47c79e101c5fc9146636f3173e50d (patch)
treec52bd0d821ed1b00170fcb10a9fb9399d1ab62ad /jam-files
parent0580c1ae9f7474a5a70a8b34f9a3bf4091324407 (diff)
Extract kenlm into a submodule, referencing lazy
Diffstat (limited to 'jam-files')
-rw-r--r--jam-files/sanity.jam6
1 files changed, 4 insertions, 2 deletions
diff --git a/jam-files/sanity.jam b/jam-files/sanity.jam
index a2616f6bf..738316f89 100644
--- a/jam-files/sanity.jam
+++ b/jam-files/sanity.jam
@@ -63,7 +63,7 @@ requirements = ;
FORCE-STATIC = [ option.get "static" : : "yes" ] ;
if $(FORCE-STATIC) {
- requirements += <runtime-link>static ;
+ requirements += <link>static <runtime-link>static ;
}
#Determine if a library can be compiled statically.
@@ -152,7 +152,7 @@ rule boost ( min-version ) {
boost-lib program_options PROGRAM_OPTIONS_DYN_LINK ;
boost-lib unit_test_framework TEST_DYN_LINK ;
boost-lib iostreams IOSTREAMS_DYN_LINK ;
- boost-lib filesystem FILE_SYSTEM_DYN_LINK : boost_system ;
+ boost-lib filesystem FILE_SYSTEM_DYN_LINK ;
}
#Link normally to a library, but sometimes static isn't installed so fall back to dynamic.
@@ -282,3 +282,5 @@ if [ option.get "sanity-test" : : "yes" ] {
EXIT "Bad" : 1 ;
}
}
+
+use-project /top : . ;