add -C to meson init

pull/6727/head
Michael 5 years ago committed by Xavier Claessens
parent 6e865fc08d
commit 2f080b1f2e
  1. 5
      docs/markdown/snippets/cd_arguments_with_init_command.md
  2. 7
      mesonbuild/minit.py

@ -0,0 +1,5 @@
## Added `-C` argument to `meson init` command
The meson init assumes that it is run inside the project
root directory. If this isn't the case, you can now use
`-C` to specify the actual project source directory.

@ -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:

Loading…
Cancel
Save