summaryrefslogtreecommitdiff
path: root/indra/newview/ViewerInstall.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/ViewerInstall.cmake')
-rw-r--r--indra/newview/ViewerInstall.cmake28
1 files changed, 28 insertions, 0 deletions
diff --git a/indra/newview/ViewerInstall.cmake b/indra/newview/ViewerInstall.cmake
new file mode 100644
index 0000000000..55069ad2b5
--- /dev/null
+++ b/indra/newview/ViewerInstall.cmake
@@ -0,0 +1,28 @@
+install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/secondlife-bin
+ DESTINATION ${APP_BINARY_DIR}
+ )
+
+install(DIRECTORY skins app_settings linux_tools
+ DESTINATION ${APP_SHARE_DIR}
+ PATTERN ".svn" EXCLUDE
+ )
+
+find_file(IS_ARTWORK_PRESENT NAMES avatar_lad.xml
+ PATHS ${VIEWER_DIR}/newview/character)
+
+if (IS_ARTWORK_PRESENT)
+ install(DIRECTORY res res-sdl character
+ DESTINATION ${APP_SHARE_DIR}
+ PATTERN ".svn" EXCLUDE
+ )
+else (IS_ARTWORK_PRESENT)
+ message(STATUS "WARNING: Artwork is not present, and will not be installed")
+endif (IS_ARTWORK_PRESENT)
+
+install(FILES featuretable_linux.txt featuretable_solaris.txt gpu_table.txt
+ DESTINATION ${APP_SHARE_DIR}
+ )
+
+install(FILES ${SCRIPTS_DIR}/messages/message_template.msg
+ DESTINATION ${APP_SHARE_DIR}/app_settings
+ )