Skip to content
Snippets Groups Projects
Commit b27e0e08 authored by Christian Goetze's avatar Christian Goetze
Browse files

Add code to support add_viewer_version_to_manager

parent ae464867
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,8 @@ endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") ...@@ -79,7 +79,8 @@ endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(GRID agni CACHE STRING "Target Grid") set(GRID agni CACHE STRING "Target Grid")
set(VIEWER ON CACHE BOOL "Build Second Life viewer.") set(VIEWER ON CACHE BOOL "Build Second Life viewer.")
set(VIEWER_CHANNEL "Developer" CACHE STRING "Viewer Channel Name")
set(VIEWER_LOGIN_CHANNEL ${VIEWER_CHANNEL} CACHE STRING "Fake login channel for A/B Testing")
set(STANDALONE OFF CACHE BOOL "Do not use Linden-supplied prebuilt libraries.") set(STANDALONE OFF CACHE BOOL "Do not use Linden-supplied prebuilt libraries.")
......
...@@ -1325,6 +1325,7 @@ if (WINDOWS) ...@@ -1325,6 +1325,7 @@ if (WINDOWS)
${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py ${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py
--configuration=${CMAKE_CFG_INTDIR} --configuration=${CMAKE_CFG_INTDIR}
--channel=${VIEWER_CHANNEL} --channel=${VIEWER_CHANNEL}
--login_channel=${VIEWER_CHANNEL}
--grid=${GRID} --grid=${GRID}
--source=${CMAKE_CURRENT_SOURCE_DIR} --source=${CMAKE_CURRENT_SOURCE_DIR}
--artwork=${ARTWORK_DIR} --artwork=${ARTWORK_DIR}
...@@ -1381,8 +1382,6 @@ build_version(viewer) ...@@ -1381,8 +1382,6 @@ build_version(viewer)
set(ARTWORK_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE PATH set(ARTWORK_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE PATH
"Path to artwork files.") "Path to artwork files.")
set(VIEWER_CHANNEL "Developer" CACHE STRING
"The name of the channel to use.")
if (LINUX) if (LINUX)
add_custom_command( add_custom_command(
...@@ -1414,6 +1413,7 @@ if (LINUX) ...@@ -1414,6 +1413,7 @@ if (LINUX)
${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py ${CMAKE_CURRENT_SOURCE_DIR}/viewer_manifest.py
--grid=${GRID} --grid=${GRID}
--channel=${VIEWER_CHANNEL} --channel=${VIEWER_CHANNEL}
--login_channel=${VIEWER_CHANNEL}
--installer_name=${product} --installer_name=${product}
--arch=${ARCH} --arch=${ARCH}
--source=${CMAKE_CURRENT_SOURCE_DIR} --source=${CMAKE_CURRENT_SOURCE_DIR}
...@@ -1469,6 +1469,7 @@ if (DARWIN) ...@@ -1469,6 +1469,7 @@ if (DARWIN)
--grid=${GRID} --grid=${GRID}
--configuration=${CMAKE_CFG_INTDIR} --configuration=${CMAKE_CFG_INTDIR}
--channel=${VIEWER_CHANNEL} --channel=${VIEWER_CHANNEL}
--login_channel=${VIEWER_CHANNEL}
--source=${CMAKE_CURRENT_SOURCE_DIR} --source=${CMAKE_CURRENT_SOURCE_DIR}
--artwork=${ARTWORK_DIR} --artwork=${ARTWORK_DIR}
--build=${CMAKE_CURRENT_BINARY_DIR} --build=${CMAKE_CURRENT_BINARY_DIR}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment