init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
58
cmake/external/CMakeLists.txt
vendored
Normal file
58
cmake/external/CMakeLists.txt
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
# This file is part of Desktop App Toolkit,
|
||||
# a set of libraries for developing nice desktop applications.
|
||||
#
|
||||
# For license and copyright information please follow this link:
|
||||
# https://github.com/desktop-app/legal/blob/master/LEGAL
|
||||
|
||||
macro(add_checked_subdirectory name)
|
||||
if (NOT DEFINED desktop_app_skip_libs
|
||||
OR NOT ${name} IN_LIST desktop_app_skip_libs)
|
||||
add_subdirectory(${name})
|
||||
endif()
|
||||
endmacro()
|
||||
|
||||
add_checked_subdirectory(ada)
|
||||
add_checked_subdirectory(angle)
|
||||
add_checked_subdirectory(auto_updates)
|
||||
add_checked_subdirectory(boost)
|
||||
if (add_cld3_library)
|
||||
add_checked_subdirectory(cld3)
|
||||
endif()
|
||||
add_checked_subdirectory(crash_reports)
|
||||
if (LINUX)
|
||||
add_checked_subdirectory(dispatch)
|
||||
endif()
|
||||
add_checked_subdirectory(expected)
|
||||
add_checked_subdirectory(ffmpeg)
|
||||
if (LINUX)
|
||||
add_checked_subdirectory(glib)
|
||||
add_checked_subdirectory(glibmm)
|
||||
endif()
|
||||
add_checked_subdirectory(gsl)
|
||||
if (add_hunspell_library)
|
||||
add_checked_subdirectory(hunspell)
|
||||
endif()
|
||||
add_checked_subdirectory(iconv)
|
||||
add_checked_subdirectory(jpeg)
|
||||
add_checked_subdirectory(kcoreaddons)
|
||||
add_checked_subdirectory(lz4)
|
||||
add_checked_subdirectory(minizip)
|
||||
add_checked_subdirectory(openal)
|
||||
add_checked_subdirectory(openh264)
|
||||
add_checked_subdirectory(openssl)
|
||||
add_checked_subdirectory(opus)
|
||||
add_checked_subdirectory(qt)
|
||||
add_checked_subdirectory(qr_code_generator)
|
||||
add_checked_subdirectory(ranges)
|
||||
add_checked_subdirectory(rlottie)
|
||||
add_checked_subdirectory(rnnoise)
|
||||
add_checked_subdirectory(tde2e)
|
||||
add_checked_subdirectory(ton)
|
||||
add_checked_subdirectory(variant)
|
||||
add_checked_subdirectory(vpx)
|
||||
add_checked_subdirectory(webrtc)
|
||||
if (LINUX AND NOT DESKTOP_APP_DISABLE_X11_INTEGRATION)
|
||||
add_checked_subdirectory(xcb)
|
||||
endif()
|
||||
add_checked_subdirectory(xxhash)
|
||||
add_checked_subdirectory(zlib)
|
||||
Reference in New Issue
Block a user