aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/cmake/00-Common.cmake
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-12-01 08:14:11 -0700
committerJacek Antonelli2009-12-06 16:33:57 -0600
commit18b5636b74d80034867e2e8273706db4dc490b15 (patch)
tree18a1eccd424335f0b60ce2e01657ddb8e1386ed3 /linden/indra/cmake/00-Common.cmake
parentAdded Imprudence viewer artwork to install.xml (diff)
downloadmeta-impy-18b5636b74d80034867e2e8273706db4dc490b15.zip
meta-impy-18b5636b74d80034867e2e8273706db4dc490b15.tar.gz
meta-impy-18b5636b74d80034867e2e8273706db4dc490b15.tar.bz2
meta-impy-18b5636b74d80034867e2e8273706db4dc490b15.tar.xz
Made downloading the artwork work while using the --standalone flag
Diffstat (limited to 'linden/indra/cmake/00-Common.cmake')
-rw-r--r--linden/indra/cmake/00-Common.cmake9
1 files changed, 7 insertions, 2 deletions
diff --git a/linden/indra/cmake/00-Common.cmake b/linden/indra/cmake/00-Common.cmake
index 1b5e9d2..746a3bf 100644
--- a/linden/indra/cmake/00-Common.cmake
+++ b/linden/indra/cmake/00-Common.cmake
@@ -5,10 +5,15 @@
5include(Variables) 5include(Variables)
6include(Prebuilt) 6include(Prebuilt)
7 7
8# Download viewer artwork 8# Download viewer artwork even when using standalone
9 9
10if (STANDALONE)
11 set(STANDALONE OFF)
12 use_prebuilt_binary(artwork)
13 set(STANDALONE ON)
14else (STANDALONE)
10 use_prebuilt_binary(artwork) 15 use_prebuilt_binary(artwork)
11 16endif (STANDALONE)
12 17
13# Portable compilation flags. 18# Portable compilation flags.
14 19