Skip to content
Snippets Groups Projects
Commit 6a2fa3da authored by James Cook's avatar James Cook
Browse files

Fix for broken builds for win_setup app. Reviewed by Brad.

parent 92921d15
No related branches found
No related tags found
No related merge requests found
......@@ -75,9 +75,10 @@ if (VIEWER)
add_dependencies(viewer mac-updater mac-crash-logger)
elseif (WINDOWS)
add_subdirectory(${VIEWER_PREFIX}win_crash_logger)
if (EXISTS ${VIEWER_PREFIX}win_setup)
add_subdirectory(${VIEWER_PREFIX}win_setup)
endif (EXISTS ${VIEWER_PREFIX}win_setup)
# cmake EXISTS requires an absolute path, see indra/cmake/Variables.cmake
if (EXISTS ${VIEWER_DIR}win_setup)
add_subdirectory(${VIEWER_DIR}win_setup)
endif (EXISTS ${VIEWER_DIR}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)
......
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