aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'project/utils.py')
-rw-r--r--project/utils.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/project/utils.py b/project/utils.py
index 9d986b0..8c57f59 100644
--- a/project/utils.py
+++ b/project/utils.py
@@ -6,7 +6,6 @@
from contextlib import contextmanager
import logging
import os.path
-import platform
import subprocess
@@ -44,11 +43,3 @@ def run(cmd_line):
def run_cmake(cmake_args):
return run(['cmake'] + cmake_args)
-
-
-def on_windows():
- return platform.system() == 'Windows'
-
-
-def on_linux():
- return not on_windows()