def build( bld ):
	bld.program(
		source = 'bgen_to_vcf.cpp',
		target = 'bgen_to_vcf',
		use = 'bgen zlib zstd',
		cxxflags = ['-std=c++11'],
		install_path = None
	)

	bld.program(
		source = 'count_alleles.cpp',
		target = 'count_alleles',
		use = 'bgen zlib zstd dl rt pthread',
		cxxflags = ['-std=c++11'],
		install_path = None
	)

	bld.program(
		source = 'compute_expected_dosage.cpp',
		target = 'compute_expected_dosage',
		use = 'bgen zlib zstd dl rt pthread',
		cxxflags = ['-std=c++11'],
		install_path = None
	)
