123 lines
3.2 KiB
CMake
123 lines
3.2 KiB
CMake
# Olive - Non-Linear Video Editor
|
|
# Copyright (C) 2020 Olive Team
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
# Try to find include files
|
|
find_path(CRASHPAD_CLIENT_INCLUDE_DIR
|
|
client/crashpad_client.h
|
|
HINTS
|
|
"${CRASHPAD_LOCATION}"
|
|
"$ENV{CRASHPAD_LOCATION}"
|
|
"${CRASHPAD_BASE_DIR}"
|
|
)
|
|
list(APPEND CRASHPAD_INCLUDE_DIRS ${CRASHPAD_CLIENT_INCLUDE_DIR})
|
|
|
|
find_path(CRASHPAD_BUILD_INCLUDE_DIR
|
|
build/chromeos_buildflags.h
|
|
HINTS
|
|
"${CRASHPAD_LOCATION}"
|
|
"$ENV{CRASHPAD_LOCATION}"
|
|
"${CRASHPAD_BASE_DIR}"
|
|
PATH_SUFFIXES
|
|
"out/Default/gen"
|
|
)
|
|
list(APPEND CRASHPAD_INCLUDE_DIRS ${CRASHPAD_BUILD_INCLUDE_DIR})
|
|
|
|
find_path(CRASHPAD_BASE_INCLUDE_DIR
|
|
base/files/file_path.h
|
|
HINTS
|
|
"${CRASHPAD_LOCATION}"
|
|
"$ENV{CRASHPAD_LOCATION}"
|
|
"${CRASHPAD_BASE_DIR}"
|
|
PATH_SUFFIXES
|
|
"third_party/mini_chromium/mini_chromium"
|
|
)
|
|
list(APPEND CRASHPAD_INCLUDE_DIRS ${CRASHPAD_BASE_INCLUDE_DIR})
|
|
|
|
# Try to find build files
|
|
if (WIN32)
|
|
find_path(CRASHPAD_LIBRARY_DIRS
|
|
obj/client/client.lib
|
|
HINTS
|
|
"${CRASHPAD_LOCATION}"
|
|
"$ENV{CRASHPAD_LOCATION}"
|
|
"${CRASHPAD_BASE_DIR}"
|
|
PATH_SUFFIXES
|
|
"out/Default"
|
|
)
|
|
elseif(UNIX)
|
|
# Assuming macOS works this way, don't actually know
|
|
find_path(CRASHPAD_LIBRARY_DIRS
|
|
obj/client/libclient.a
|
|
HINTS
|
|
"${CRASHPAD_LOCATION}"
|
|
"$ENV{CRASHPAD_LOCATION}"
|
|
"${CRASHPAD_BASE_DIR}"
|
|
PATH_SUFFIXES
|
|
"out/Default"
|
|
)
|
|
endif()
|
|
|
|
# Find the libraries we need
|
|
set (_crashpad_components
|
|
client
|
|
util
|
|
third_party/mini_chromium/mini_chromium/base
|
|
compat
|
|
)
|
|
foreach (COMPONENT ${_crashpad_components})
|
|
get_filename_component(SHORT_COMPONENT ${COMPONENT} NAME)
|
|
string(TOUPPER ${SHORT_COMPONENT} UPPER_COMPONENT)
|
|
|
|
find_library(CRASHPAD_${UPPER_COMPONENT}_LIB
|
|
${SHORT_COMPONENT}
|
|
HINTS
|
|
"${CRASHPAD_LIBRARY_DIRS}/obj/${COMPONENT}"
|
|
)
|
|
|
|
list(APPEND CRASHPAD_LIBRARIES ${CRASHPAD_${UPPER_COMPONENT}_LIB})
|
|
endforeach()
|
|
|
|
# Find Breakpad's minidump_stackwalk
|
|
find_path(BREAKPAD_BIN_DIR
|
|
"minidump_stackwalk${CMAKE_EXECUTABLE_SUFFIX}"
|
|
HINTS
|
|
"${BREAKPAD_LOCATION}"
|
|
"$ENV{BREAKPAD_LOCATION}"
|
|
"${BREAKPAD_BASE_DIR}"
|
|
PATH_SUFFIXES
|
|
bin
|
|
)
|
|
|
|
find_package_handle_standard_args(GoogleCrashpad
|
|
REQUIRED_VARS
|
|
CRASHPAD_CLIENT_LIB
|
|
CRASHPAD_UTIL_LIB
|
|
CRASHPAD_BASE_LIB
|
|
BREAKPAD_BIN_DIR
|
|
CRASHPAD_BUILD_INCLUDE_DIR
|
|
CRASHPAD_CLIENT_INCLUDE_DIR
|
|
CRASHPAD_BASE_INCLUDE_DIR
|
|
)
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
list(APPEND CRASHPAD_LIBRARIES
|
|
${CMAKE_DL_LIBS} # Crashpad compat lib needs libdl.so (-ldl)
|
|
Threads::Threads # Link against libpthread.so (-lpthread)
|
|
)
|
|
endif()
|