From af7141de663b387ac269c89aab895a8a8ca407af Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Fri, 13 Oct 2023 10:49:00 +0200 Subject: [PATCH] Set build type in setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4611ac78a..b88329e54 100644 --- a/setup.py +++ b/setup.py @@ -70,8 +70,8 @@ class CMakeBuild(build_ext): self.spawn(['cmake', str(cwd), param_py, '-DTEST=OFF', f'-DCMAKE_INSTALL_PREFIX:PATH={install_path}']) if not self.dry_run: - self.spawn(['cmake', '--build', '.', '-j', max_jobs]) - self.spawn(['cmake', '--install', '.']) + self.spawn(['cmake', '--build', '.', '--config', 'Debug', '-j', max_jobs]) + self.spawn(['cmake', '--install', '.', '--config', 'Debug']) os.chdir(str(cwd)) aidge_package = build_lib / (get_project_name()) -- GitLab