mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-03 21:30:35 +05:00
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
CURRENT_DIR=`pwd`
|
||
|
CONF_DIR=`echo $0 | sed -e "s,[^/]*$,,;s,/$,,;s,^$,.,"`
|
||
|
cd ${CONF_DIR}
|
||
|
python $KERNEL_ROOT_DIR/salome_adm/cmake_files/am2cmake.py --geom
|
||
|
status=$?
|
||
|
cd ${CURRENT_DIR}
|
||
|
exit $status
|