diff options
| author | Bryan O'Sullivan <bos@lindenlab.com> | 2008-06-03 16:35:17 +0000 | 
|---|---|---|
| committer | Bryan O'Sullivan <bos@lindenlab.com> | 2008-06-03 16:35:17 +0000 | 
| commit | 125905ed32fcc9e1b14dbc210e87023c56f2afcc (patch) | |
| tree | b80ce98e794bed5b16c0147451b94bc2f76cb2c8 | |
| parent | 60ef27ad2317ad73c7d37e2f120551630354fc0c (diff) | |
Don't include copy_win_scripts if it does not exist.
| -rw-r--r-- | indra/CMakeLists.txt | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt index e09c7110c5..ce359a85b0 100644 --- a/indra/CMakeLists.txt +++ b/indra/CMakeLists.txt @@ -37,9 +37,9 @@ endif (EXISTS ${LIBS_CLOSED_DIR}llkdu AND NOT STANDALONE)  add_subdirectory(${LIBS_OPEN_PREFIX}lscript) -if (WINDOWS) -    add_subdirectory(copy_win_scripts) -endif (WINDOWS) +if (WINDOWS AND EXISTS copy_win_scripts) +  add_subdirectory(copy_win_scripts) +endif (WINDOWS AND EXISTS copy_win_scripts)  if (VIEWER)    add_subdirectory(${LIBS_OPEN_PREFIX}llcrashlogger) | 
