Skip to content
Snippets Groups Projects
Commit 165c6897 authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

chore : missing script before wheel

parent 26825ec1
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
set -x
set -e
DEPS_NAME=("aidge_core")
for repo in $DEPS_NAME; do
cd $repo
mkdir build
cd build
cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -DAIDGE_INSTALL=1
make -j4 all install
done
set +x
set +e
......@@ -88,6 +88,7 @@ class CMakeBuild(build_ext):
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON",
]
)
if not self.dry_run:
self.spawn(
["cmake", "--build", ".", "--config", compile_type, "-j", max_jobs]
......
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