15 lines
324 B
Bash
Executable File
15 lines
324 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
set -x
|
|
|
|
if [ -n "$CGAL_ARCH_PATH" ]
|
|
then
|
|
#- Already built by ../Allwake
|
|
#wmake libso ../foamyHexMesh/conformalVoronoiMesh
|
|
|
|
wmake libso conformalVoronoi2DMesh
|
|
wmake
|
|
fi
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|