-
Notifications
You must be signed in to change notification settings - Fork 8
/
outpost.lb
31 lines (26 loc) · 928 Bytes
/
outpost.lb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2015, 2017-2018, German Aerospace Center (DLR)
#
# This file is part of the development version of OUTPOST.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Authors:
# - 2015, 2017-2018, Fabian Greif (DLR RY-AVS)
def init(repo):
repo.name = "outpost"
repo.add_option(StringOption(
name="target",
default="hosted",
description="Target architecture for the library."))
repo.add_option(BooleanOption(
name="test",
default=False,
description="Include unit test source code."))
repo.add_ignore_patterns("*SConscript", "*SConstruct", "*.sconsign.dblite")
def prepare(repo, options):
repo.find_modules_recursive(".", modulefile="module.lb")