fix cmake warning by conditionalizing dependency that does not exist on Macs
parent
a07a8cbf6e
commit
7f5e6cea12
|
|
@ -2170,7 +2170,10 @@ if (PACKAGE)
|
|||
VERBATIM)
|
||||
|
||||
add_custom_target(generate_breakpad_symbols DEPENDS "${VIEWER_SYMBOL_FILE}")
|
||||
add_dependencies(generate_breakpad_symbols "${VIEWER_BINARY_NAME}" "${VIEWER_COPY_MANIFEST}")
|
||||
add_dependencies(generate_breakpad_symbols "${VIEWER_BINARY_NAME}")
|
||||
if (WINDOWS OR LINUX)
|
||||
add_dependencies(generate_breakpad_symbols "${VIEWER_COPY_MANIFEST}")
|
||||
endif (WINDOWS OR LINUX)
|
||||
add_dependencies(llpackage generate_breakpad_symbols)
|
||||
endif(RELEASE_CRASH_REPORTING OR NON_RELEASE_CRASH_REPORTING)
|
||||
endif (PACKAGE)
|
||||
|
|
|
|||
Loading…
Reference in New Issue