diff options
author | Christian Goetze <cg@lindenlab.com> | 2008-11-20 19:17:30 +0000 |
---|---|---|
committer | Christian Goetze <cg@lindenlab.com> | 2008-11-20 19:17:30 +0000 |
commit | 77c108b2c4879fbbb168f91fed7763a0b557ecab (patch) | |
tree | d29b57f1dcedc169ce2f6875632072dc10f174bd | |
parent | 2a44e81675d22aa5ed0844d5a4ac18bb9bd49f64 (diff) |
Add an "if (EXISTS ${VIEWER_PREFIX}win_setup)" to fix open source drop
-rw-r--r-- | indra/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt index 0755f810bd..19efc952ac 100644 --- a/indra/CMakeLists.txt +++ b/indra/CMakeLists.txt @@ -73,7 +73,9 @@ if (VIEWER) add_dependencies(viewer mac-updater mac-crash-logger) elseif (WINDOWS) add_subdirectory(${VIEWER_PREFIX}win_crash_logger) - add_subdirectory(${VIEWER_PREFIX}win_setup) + if (EXISTS ${VIEWER_PREFIX}win_setup) + add_subdirectory(${VIEWER_PREFIX}win_setup) + endif (EXISTS ${VIEWER_PREFIX}win_setup) add_subdirectory(${VIEWER_PREFIX}win_updater) # add_dependencies(viewer windows-updater windows-setup windows-crash-logger) add_dependencies(viewer windows-updater windows-crash-logger) |