BobBuildTool/basement

missing __unset__ case?

Closed this issue · 1 comments

case $(cpackageLibraryType) in
shared|both)
BUILD_SHARED_LIBS=ON
;;
static)
BUILD_SHARED_LIBS=OFF
;;
esac

should we use __unset__ to define a default by just adding

__unset__)
   ;;

The cpackageLibraryType function only returns shared, static or both. It will never return __unset__. The __unset__ stuff was hidden in classes/cpackage.yaml on one of the last refactorings.