|
|
@ -18,6 +18,8 @@ from pathlib import Path |
|
|
|
from enum import Enum |
|
|
|
from enum import Enum |
|
|
|
import subprocess |
|
|
|
import subprocess |
|
|
|
import shutil |
|
|
|
import shutil |
|
|
|
|
|
|
|
import sys |
|
|
|
|
|
|
|
import os |
|
|
|
import re |
|
|
|
import re |
|
|
|
from glob import glob |
|
|
|
from glob import glob |
|
|
|
from mesonbuild import mesonlib |
|
|
|
from mesonbuild import mesonlib |
|
|
@ -210,6 +212,7 @@ def add_arguments(parser): |
|
|
|
Meson project. |
|
|
|
Meson project. |
|
|
|
''' |
|
|
|
''' |
|
|
|
parser.add_argument("srcfiles", metavar="sourcefile", nargs="*", help="source files. default: all recognized files in current directory") |
|
|
|
parser.add_argument("srcfiles", metavar="sourcefile", nargs="*", help="source files. default: all recognized files in current directory") |
|
|
|
|
|
|
|
parser.add_argument('-C', default='.', dest='wd', help='directory to cd into before running') |
|
|
|
parser.add_argument("-n", "--name", help="project name. default: name of current directory") |
|
|
|
parser.add_argument("-n", "--name", help="project name. default: name of current directory") |
|
|
|
parser.add_argument("-e", "--executable", help="executable name. default: project name") |
|
|
|
parser.add_argument("-e", "--executable", help="executable name. default: project name") |
|
|
|
parser.add_argument("-d", "--deps", help="dependencies, comma-separated") |
|
|
|
parser.add_argument("-d", "--deps", help="dependencies, comma-separated") |
|
|
@ -224,6 +227,10 @@ def run(options) -> int: |
|
|
|
''' |
|
|
|
''' |
|
|
|
Here we generate the new Meson sample project. |
|
|
|
Here we generate the new Meson sample project. |
|
|
|
''' |
|
|
|
''' |
|
|
|
|
|
|
|
if not Path(options.wd).exists(): |
|
|
|
|
|
|
|
sys.exit('Project source root directory not found. Run this command in build directory root.') |
|
|
|
|
|
|
|
os.chdir(options.wd) |
|
|
|
|
|
|
|
|
|
|
|
if not glob('*'): |
|
|
|
if not glob('*'): |
|
|
|
autodetect_options(options, sample=True) |
|
|
|
autodetect_options(options, sample=True) |
|
|
|
if not options.language: |
|
|
|
if not options.language: |
|
|
|