mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
add baking to default build, add default to baking status
This commit is contained in:
parent
3abca67f1a
commit
ed21ad11d2
2 changed files with 3 additions and 4 deletions
|
@ -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)
|
||||
|
|
|
@ -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 "--";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue