13 lines
379 B
Bash
Executable File
13 lines
379 B
Bash
Executable File
#!/bin/sh
|
|
cd "${0%/*}" || exit # Run from this directory
|
|
. ${WM_PROJECT_DIR:?}/wmake/scripts/AllwmakeParseArguments
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
if [ -d "${FASTDUALOCTREE_SRC_PATH}" ]
|
|
then
|
|
wmake $targetType
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|