Skip to content
Snippets Groups Projects
Commit 125905ed authored by Bryan O'Sullivan's avatar Bryan O'Sullivan
Browse files

Don't include copy_win_scripts if it does not exist.

parent 60ef27ad
No related branches found
No related tags found
No related merge requests found
...@@ -37,9 +37,9 @@ endif (EXISTS ${LIBS_CLOSED_DIR}llkdu AND NOT STANDALONE) ...@@ -37,9 +37,9 @@ endif (EXISTS ${LIBS_CLOSED_DIR}llkdu AND NOT STANDALONE)
add_subdirectory(${LIBS_OPEN_PREFIX}lscript) add_subdirectory(${LIBS_OPEN_PREFIX}lscript)
if (WINDOWS) if (WINDOWS AND EXISTS copy_win_scripts)
add_subdirectory(copy_win_scripts) add_subdirectory(copy_win_scripts)
endif (WINDOWS) endif (WINDOWS AND EXISTS copy_win_scripts)
if (VIEWER) if (VIEWER)
add_subdirectory(${LIBS_OPEN_PREFIX}llcrashlogger) add_subdirectory(${LIBS_OPEN_PREFIX}llcrashlogger)
......
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