Source
127
127
128
128
# Copy the client library up to the breakpad root directory
129
129
130
130
if (APPLE)
131
131
set (OS "mac")
132
132
else ()
133
133
set (OS "linux")
134
134
endif ()
135
135
136
136
if (APPLE)
137
-
message ("Building on and Mac, not trying to copy the breakpad client")
137
+
message ("Building on a Mac, not trying to copy the breakpad client")
138
138
message ("Extracting full paths for Mac libraries")
139
139
message ("Project binary directory: ${PROJECT_BINARY_DIR}")
140
140
execute_process (COMMAND perl fixbreakpadframeworkrefs.pl ${PROJECT_BINARY_DIR}
141
141
WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}/install"
142
142
#OUTPUT_VARIABLE error_message
143
143
#ERROR_VARIABLE error_message
144
144
RESULT_VARIABLE status)
145
145
if (NOT ${status} EQUAL 0)
146
146
message (SEND_ERROR "*** Failed to fix Breakpad Framework paths: ${command}: ${error_message}")
147
147
endif ()