add baking to default build, add default to baking status

This commit is contained in:
Stephen Birarda 2017-08-30 15:14:53 -07:00
parent 3abca67f1a
commit ed21ad11d2
2 changed files with 3 additions and 4 deletions

View file

@ -11,7 +11,5 @@ if (FBX_FOUND)
target_include_directories(${TARGET_NAME} SYSTEM PRIVATE ${FBX_INCLUDE_DIR})
endif ()
set_target_properties(${TARGET_NAME} PROPERTIES EXCLUDE_FROM_ALL TRUE EXCLUDE_FROM_DEFAULT_BUILD TRUE)
link_hifi_libraries(shared model networking ktx image)
include_hifi_library_headers(gpu)

View file

@ -87,8 +87,6 @@ bool isValidHash(const AssetHash& hash) {
QString bakingStatusToString(BakingStatus status) {
switch (status) {
case Unrelevant:
return "--";
case NotBaked:
return "Not Baked";
case Pending:
@ -99,5 +97,8 @@ QString bakingStatusToString(BakingStatus status) {
return "Baked";
case Error:
return "Error";
default:
case Unrelevant:
return "--";
}
}