mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-29 06:52:34 +03:00
30 lines
1.6 KiB
Plaintext
30 lines
1.6 KiB
Plaintext
local compressed_flags = <include>.. <define>HAVE_ZLIB ;
|
|
local compressed_deps = /top//z ;
|
|
if [ test_library "bz2" ] && [ test_header "bzlib.h" ] {
|
|
external-lib bz2 ;
|
|
compressed_flags += <define>HAVE_BZLIB ;
|
|
compressed_deps += bz2 ;
|
|
}
|
|
if [ test_library "lzma" ] && [ test_header "lzma.h" ] {
|
|
external-lib lzma ;
|
|
compressed_flags += <define>HAVE_XZLIB ;
|
|
compressed_deps += lzma ;
|
|
}
|
|
|
|
obj read_compressed.o : read_compressed.cc : $(compressed_flags) ;
|
|
alias read_compressed : read_compressed.o $(compressed_deps) ;
|
|
obj read_compressed_test.o : read_compressed_test.cc /top//boost_unit_test_framework : $(compressed_flags) ;
|
|
obj file_piece_test.o : file_piece_test.cc /top//boost_unit_test_framework : $(compressed_flags) ;
|
|
|
|
fakelib kenutil : bit_packing.cc ersatz_progress.cc exception.cc file.cc file_piece.cc mmap.cc murmur_hash.cc pool.cc read_compressed string_piece.cc usage.cc : <include>.. : : <include>.. ;
|
|
|
|
import testing ;
|
|
|
|
unit-test bit_packing_test : bit_packing_test.cc kenutil /top//boost_unit_test_framework ;
|
|
run file_piece_test.o kenutil /top//boost_unit_test_framework : : file_piece.cc ;
|
|
unit-test read_compressed_test : read_compressed_test.o kenutil /top//boost_unit_test_framework ;
|
|
unit-test joint_sort_test : joint_sort_test.cc kenutil /top//boost_unit_test_framework ;
|
|
unit-test probing_hash_table_test : probing_hash_table_test.cc kenutil /top//boost_unit_test_framework ;
|
|
unit-test sorted_uniform_test : sorted_uniform_test.cc kenutil /top//boost_unit_test_framework ;
|
|
unit-test tokenize_piece_test : tokenize_piece_test.cc kenutil /top//boost_unit_test_framework ;
|