blob: 9d986b083f72e250ddb75cd12dc839e92672d0a5 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "cmake-common" project.
# For details, see https://github.com/egor-tensin/cmake-common.
# Distributed under the MIT License.
from contextlib import contextmanager
import logging
import os.path
import platform
import subprocess
def normalize_path(s):
return os.path.abspath(os.path.normpath(s))
@contextmanager
def setup_logging():
logging.basicConfig(
format='%(asctime)s | %(levelname)s | %(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
level=logging.INFO)
try:
yield
except Exception as e:
logging.exception(e)
raise
@contextmanager
def cd(path):
cwd = os.getcwd()
os.chdir(path)
try:
yield
finally:
os.chdir(cwd)
def run(cmd_line):
logging.info('Running executable: %s', cmd_line)
return subprocess.run(cmd_line, check=True)
def run_cmake(cmake_args):
return run(['cmake'] + cmake_args)
def on_windows():
return platform.system() == 'Windows'
def on_linux():
return not on_windows()
|