summaryrefslogtreecommitdiff
path: root/testconfigure.py
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-10-14 22:03:24 +0530
committerFlorian Dold <florian.dold@gmail.com>2019-10-14 22:21:56 +0530
commitab8503f11de99b030368d24faf7c8788de9eb84e (patch)
tree49c13e2b45c2ef1d2419bbee64abdb016dadb3df /testconfigure.py
parentc49278458aad2d2bfbf91b3e4ee4dd1650bf9601 (diff)
downloadbuild-common-ab8503f11de99b030368d24faf7c8788de9eb84e.tar.gz
build-common-ab8503f11de99b030368d24faf7c8788de9eb84e.tar.bz2
build-common-ab8503f11de99b030368d24faf7c8788de9eb84e.zip
build scripts as library
Diffstat (limited to 'testconfigure.py')
-rw-r--r--testconfigure.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/testconfigure.py b/testconfigure.py
new file mode 100644
index 0000000..af7e85a
--- /dev/null
+++ b/testconfigure.py
@@ -0,0 +1,13 @@
+from talerbuildconfig import *
+
+b = BuildConfig()
+b.enable_prefix()
+b.enable_configmk()
+b.add_tool(YarnTool())
+b.add_tool(BrowserTool())
+b.add_tool(PyBabelTool())
+b.add_tool(NodeJsTool())
+b.add_tool(PosixTool("find"))
+b.add_tool(PosixTool("xargs"))
+b.add_tool(PosixTool("msgmerge"))
+b.run()