You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
314 B

#!/bin/sh
# compile script
workpath=$(cd "$(dirname "$0")" && pwd)
echo "workpath: $workpath"
cmake -B $workpath/build -S $workpath \
&& cmake --build $workpath/build --config Release --target preview_pointcloud -j 4 \
&& echo "== Run $workpath/build/open3d_preview/preview_pointcloud" \
|| echo "== Build failed"