Sorry to resuscitate the thread but no solution was provided.
Best way I found to make them available
class UMyBlueprintLibrary: public UBlueprintFunctionLibrary
{
UFUNCTION(BlueprintPure)
static UEnum* GetMyCPPEnum() {
static UEnum* MyEnum = StaticEnum<MyCPPEnum>();
return MyEnum ;
}
};