Fixed build script for Mac OS X.

This commit is contained in:
Wei Tjong Yao 2013-08-09 12:12:23 +00:00
Родитель 38ae7f36c5
Коммит 2b024be205
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -29,7 +29,7 @@ else
# Create symbolic links in the respective Xcode configuration subdir to allow running Urho3D within the xcode itself
cd Build/Tools/Urho3D
for conf in Debug RelWithDebInfo Release; do
if [ ! -d $conf ] then mkdir $conf; fi
if [ ! -d $conf ]; then mkdir $conf; fi
for dir in CoreData Data; do
cmake -E create_symlink ../../../../Bin/$dir $conf/$dir
done