More CMakeList additions

Set up AppKit framework
This commit is contained in:
2017-11-05 21:27:09 -08:00
parent 7e38a4c311
commit ea1c447f1d
4 changed files with 27 additions and 2 deletions

View File

@@ -1064,6 +1064,9 @@ std::string KRCamera::getDebugText()
case KRNode::RENDER_PASS_SHADOWMAP:
stream << "shadow";
break;
default:
// Suppress warnings
break;
}
stream << "\t" << (*itr).object_name << "\t" << (*itr).material_name;
vertex_count += (*itr).vertex_count;
@@ -1085,6 +1088,9 @@ std::string KRCamera::getDebugText()
case KRRenderSettings::KRENGINE_DEBUG_DISPLAY_SIREN_AMBIENT_ZONES:
stream << "Siren - Ambient Zones";
break;
case KRRenderSettings::KRENGINE_DEBUG_DISPLAY_NUMBER:
// Suppress warning
break;
}
return stream.str();
}