Skip to content
Snippets Groups Projects
Commit 25f682b5 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed cmake install

parent 75443d29
No related branches found
No related tags found
1 merge request!26More builds
Pipeline #32758 passed
......@@ -71,7 +71,7 @@ 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', '.', '-j', max_jobs])
self.spawn(['cmake', '--install', '.'])
os.chdir(str(cwd))
aidge_package = build_lib / (get_project_name())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment