[mod] tools:bauen
This commit is contained in:
parent
baffdf891c
commit
587552f9a5
2 changed files with 4 additions and 2 deletions
|
@ -13,6 +13,7 @@
|
||||||
# You should have received a copy of the GNU General Public License along with this program. If not, see
|
# You should have received a copy of the GNU General Public License along with this program. If not, see
|
||||||
# <https://www.gnu.org/licenses/>.
|
# <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import sys as _sys
|
||||||
import os as _os
|
import os as _os
|
||||||
import argparse as _argparse
|
import argparse as _argparse
|
||||||
|
|
||||||
|
@ -31,7 +32,7 @@ def main():
|
||||||
"-o",
|
"-o",
|
||||||
"--output-directory",
|
"--output-directory",
|
||||||
type = str,
|
type = str,
|
||||||
default = "build",
|
default = "/tmp/espe-backend",
|
||||||
metavar = "<output-directory>",
|
metavar = "<output-directory>",
|
||||||
help = "output directory",
|
help = "output directory",
|
||||||
)
|
)
|
||||||
|
@ -49,6 +50,7 @@ def main():
|
||||||
" ".join(targets),
|
" ".join(targets),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
_sys.stdout.write("%s\n" % args.output_directory)
|
||||||
|
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
dir_lib := lib
|
dir_lib := lib
|
||||||
dir_source := source
|
dir_source := source
|
||||||
dir_temp := temp
|
dir_temp := /tmp/espe-backend-temp
|
||||||
dir_build := build
|
dir_build := build
|
||||||
dir_tools := tools
|
dir_tools := tools
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue