storm-1060 : add windows (thanks Kadah and Michelle), remove some files I think are no longer used
parent
5aa1521625
commit
aeb1f944aa
|
|
@ -33,6 +33,7 @@ indra/newview/character
|
|||
indra/newview/fmod.dll
|
||||
indra/newview/mozilla-theme
|
||||
indra/newview/mozilla-universal-darwin.tgz
|
||||
indra/newview/res/ll_icon.*
|
||||
indra/newview/res-sdl
|
||||
indra/newview/vivox-runtime
|
||||
indra/server-linux-*
|
||||
|
|
|
|||
|
|
@ -454,6 +454,8 @@ Jonathan Yap
|
|||
STORM-1273
|
||||
STORM-1462
|
||||
STORM-1459
|
||||
Kadah Coba
|
||||
STORM-1060
|
||||
Kage Pixel
|
||||
VWR-11
|
||||
Ken March
|
||||
|
|
@ -540,6 +542,7 @@ Michelle2 Zenovka
|
|||
VWR-8889
|
||||
VWR-8310
|
||||
VWR-9499
|
||||
STORM-1060
|
||||
Mm Alder
|
||||
SNOW-376
|
||||
VWR-197
|
||||
|
|
|
|||
|
|
@ -1248,6 +1248,31 @@ if (WINDOWS)
|
|||
set(viewer_SOURCE_FILES "${viewer_SOURCE_FILES}" llviewerprecompiledheaders.cpp)
|
||||
endif(USE_PRECOMPILED_HEADERS)
|
||||
|
||||
# Replace the icons with the appropriate ones for the channel
|
||||
set(ICON_PATH "test")
|
||||
string(TOLOWER ${VIEWER_CHANNEL} channel_lower)
|
||||
if(channel_lower MATCHES "^(release|beta|development)")
|
||||
set(ICON_PATH ${channel_lower})
|
||||
elseif(channel_lower MATCHES "^(project.*)")
|
||||
set(ICON_PATH "project")
|
||||
endif()
|
||||
message("Copying icons for ${ICON_PATH}")
|
||||
execute_process(
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/icons/${ICON_PATH}/secondlife.ico"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/res/ll_icon.ico"
|
||||
)
|
||||
execute_process(
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/icons/${ICON_PATH}/secondlife_256.BMP"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/res/ll_icon.BMP"
|
||||
)
|
||||
execute_process(
|
||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/icons/${ICON_PATH}/secondlife_256.BMP"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/res-sdl/ll_icon.BMP"
|
||||
)
|
||||
|
||||
# Add resource files to the project.
|
||||
# viewerRes.rc is the only buildable file, but
|
||||
# the rest are all dependencies of it.
|
||||
|
|
@ -1277,6 +1302,7 @@ if (WINDOWS)
|
|||
res/lltooltranslate.cur
|
||||
res/lltoolzoomin.cur
|
||||
res/lltoolzoomout.cur
|
||||
res-sdl/ll_icon.BMP
|
||||
res/ll_icon.BMP
|
||||
res/ll_icon.ico
|
||||
res/resource.h
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 256 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 256 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 359 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 29 KiB |
Loading…
Reference in New Issue