diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-01-23 14:47:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-23 14:47:06 +0200 |
commit | 379b42c5b18cd94feded28791a5189ee253ba04e (patch) | |
tree | 32276f56c794a215bf7768b541e7fb5279e326a7 /run_project_tests.py | |
parent | f72522e8890bb44283da970bf8e4545830ae81a6 (diff) | |
parent | 43147c2594f2d8d802113d1cb2bc5bb9c72d3b96 (diff) | |
download | meson-379b42c5b18cd94feded28791a5189ee253ba04e.zip meson-379b42c5b18cd94feded28791a5189ee253ba04e.tar.gz meson-379b42c5b18cd94feded28791a5189ee253ba04e.tar.bz2 |
Merge pull request #3919 from mesonbuild/cudarebase
Add Cuda support
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 02897ce..4c6ca3b 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -542,6 +542,7 @@ def detect_tests_to_run(): ('objective c++', 'objcpp', backend not in (Backend.ninja, Backend.xcode) or mesonlib.is_windows() or not have_objcpp_compiler()), ('fortran', 'fortran', backend is not Backend.ninja or not shutil.which('gfortran')), ('swift', 'swift', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('swiftc')), + ('cuda', 'cuda', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('nvcc')), ('python3', 'python3', backend is not Backend.ninja), ('python', 'python', backend is not Backend.ninja), ('fpga', 'fpga', shutil.which('yosys') is None), |