We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea0daf9 commit 05e7a43Copy full SHA for 05e7a43
src/lowtran/cmake.py
@@ -2,6 +2,7 @@
2
import shutil
3
from pathlib import Path
4
import os
5
+import logging
6
7
__all__ = ["build"]
8
@@ -23,9 +24,9 @@ def build(source_dir: Path, build_dir: Path) -> None:
23
24
25
# %% Configure
26
cmd = [cmake, f"-B{build_dir}", f"-S{source_dir}", f"-G{gen}"]
-
27
+ logging.info(" ".join(cmd))
28
subprocess.check_call(cmd)
29
# %% Build
30
cmd = [cmake, "--build", str(build_dir), "--parallel"]
31
32
0 commit comments