File tree Expand file tree Collapse file tree 5 files changed +4
-22
lines changed Expand file tree Collapse file tree 5 files changed +4
-22
lines changed Original file line number Diff line number Diff line change @@ -85,17 +85,7 @@ if (ENABLE_MEDIA_PLUGINS)
85
85
add_subdirectory (${LIBS_OPEN_PREFIX} media_plugins )
86
86
endif (ENABLE_MEDIA_PLUGINS )
87
87
88
- # if (LINUX)
89
- # if (INSTALL_PROPRIETARY)
90
- # include(LLAppearanceUtility)
91
- # add_subdirectory(${LLAPPEARANCEUTILITY_SRC_DIR} ${LLAPPEARANCEUTILITY_BIN_DIR})
92
- # endif (INSTALL_PROPRIETARY)
93
- # elseif (WINDOWS)
94
- # # cmake EXISTS requires an absolute path, see indra/cmake/Variables.cmake
95
- # if (EXISTS ${VIEWER_DIR}win_setup)
96
- # add_subdirectory(${VIEWER_DIR}win_setup)
97
- # endif (EXISTS ${VIEWER_DIR}win_setup)
98
- # endif (LINUX)
88
+ add_subdirectory (${VIEWER_PREFIX} llappearanceutility )
99
89
100
90
if (WINDOWS )
101
91
# cmake EXISTS requires an absolute path, see indra/cmake/Variables.cmake
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ include(LLImage)
10
10
include (LLMath )
11
11
include (LLWindow )
12
12
include (Linking )
13
- #include(GooglePerfTools)
14
-
15
13
16
14
set (appearance_utility_SOURCE_FILES
17
15
appearance_utility.cpp
@@ -65,10 +63,6 @@ target_link_libraries(appearance-utility-bin
65
63
llxml
66
64
)
67
65
68
- add_custom_target (appearance-utility-bin-target ALL
69
- DEPENDS appearance-utility-bin )
70
-
71
-
72
66
if (BUILD_HEADLESS )
73
67
add_executable (appearance-utility-headless-bin ${appearance_utility_SOURCE_FILES} )
74
68
@@ -80,8 +74,5 @@ if (BUILD_HEADLESS)
80
74
llrenderheadless
81
75
llxml
82
76
)
83
-
84
- add_custom_target (appearance-utility-headless-bin-target ALL
85
- DEPENDS appearance-utility-headless-bin )
86
77
endif (BUILD_HEADLESS )
87
78
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ bool LLProcessParams::processInputDataForJointInfo( LLBakingAvatar& avatar )
237
237
// pelvisOffset = skin["pelvis_offset"].asReal();
238
238
// }
239
239
// Now apply the extracted joint data to the avatar
240
- U32 jointCount = jointNames.size ();
240
+ U32 jointCount = narrow ( jointNames.size () );
241
241
242
242
if ( jointOffsets.size () < jointCount )
243
243
{
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ void LLProcessSkin::process(std::ostream& output)
84
84
{
85
85
for (U32 k = 0 ; k < 4 ; k++)
86
86
{
87
- mat.mMatrix [j][k] = ( *iter)[j*4 +k].asReal ();
87
+ mat.mMatrix [j][k] = static_cast <F32>(( *iter)[j*4 +k].asReal () );
88
88
}
89
89
}
90
90
joint_offsets.append ( ll_sd_from_vector3 ( mat.getTranslation () ));
Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ if (WINDOWS)
121
121
lldragdropwin32.h
122
122
)
123
123
list (APPEND llwindow_LINK_LIBRARIES
124
+ wbemuuid
124
125
comdlg32 # Common Dialogs for ChooseColor
125
126
ole32
126
127
dxgi
You can’t perform that action at this time.
0 commit comments