wallet-core/configure.py

16 lines
352 B
Python
Raw Normal View History

2019-11-01 12:19:59 +01:00
# This configure.py file is places in the public domain.
2019-10-14 19:09:12 +02:00
2019-11-01 12:19:59 +01:00
# Configure the build directory.
# This file is invoked by './configure' and should usually not be invoked
# manually.
2019-10-14 19:09:12 +02:00
from talerbuildconfig import *
b = BuildConfig()
b.enable_prefix()
b.enable_configmk()
b.add_tool(PosixTool("find"))
b.add_tool(NodeJsTool())
b.add_tool(YarnTool())
b.run()