summaryrefslogtreecommitdiff
path: root/configure.py
blob: 89d143325c742a797da47064623e5d96467ce8b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This configure.py file is places in the public domain.

# Configure the build directory.
# This file is invoked by './configure' and should usually not be invoked
# manually.

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()