assembly debug version |
Gentoo Mono Handbook
dotnet.eclass |
# @FUNCTION: usedebug_tostring
# @DESCRIPTION: returns strings "Debug" or "Release" depending from USE="debug"
function usedebug_tostring ( ) {
local DIR=""
if use debug; then
DIR="Debug"
else
DIR="Release"
fi
echo "${DIR}"
}