From 148fb362737a957902ce5a9c15a78c7eb3b91ae5 Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Mon, 12 Apr 2021 20:11:31 -0700 Subject: [PATCH] fix verbose usage again --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 30c0f75..1d42019 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,8 @@ class CMakeBuild(build_ext): # If this is a CI build, make sure not to use any advanced CPU features if bool(os.environ.get('CI', False)): - cmake_args += ['-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON', '-DCMAKE_CXX_FLAGS=-mtune=x86_64'] + cmake_args += ['-DCMAKE_CXX_FLAGS=-mtune=x86_64'] + build_args += ['-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON'] # Set CMAKE_BUILD_PARALLEL_LEVEL to control the parallel build level # across all generators.