summaryrefslogtreecommitdiff
path: root/configure.py.template
blob: 0cb77fedf3c29b112b05607b5e7a2f033f2f69d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import sys
from pathlib import Path

base_dir = Path(__file__, "../build-system/taler-build-scripts").resolve()
if not base_dir.exists():
    print(
        f"build system directory ({base_dir}) missing", file=sys.stderr
    )
    sys.exit(1)
sys.path.insert(0, str(base_dir))

from talerbuildconfig import *

b = BuildConfig()
b.enable_prefix()
b.enable_configmk()
b.add_tool(PosixTool("find"))
b.run()