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.
|
#!/bin/bash
|
|
|
|
# make relese version of lib/app in the cwd
|
|
|
|
mkdir -p obj_rel
|
|
|
|
if [ $# -eq 0 ] ; then
|
|
qmake KW_CONFIG=release -o Makefile.release || exit 1
|
|
fi
|
|
|
|
nmake -nologo -f Makefile.release $*
|