configure.py (482B)
1 # This configure.py.template file is in the public domain. 2 3 from talerbuildconfig import * 4 5 b = BuildConfig() 6 b.enable_prefix() 7 b.enable_configmk() 8 # cargo is the whole build, so it is the only tool we insist on. Deliberately 9 # NOT rustup: robocop builds with whatever Rust toolchain is already installed 10 # (the distribution's cargo/rustc packages do fine), so a rustup-managed 11 # toolchain is one supported option rather than a prerequisite. 12 b.add_tool(PosixTool("cargo")) 13 b.run()