tdesktop.patch 755 B

1234567891011121314151617181920212223
  1. From 6b0eeb2c15aa278ffa577bcefebcff8f2c98aca9 Mon Sep 17 00:00:00 2001
  2. From: Ilya Fedin <fedin-ilja2010@ya.ru>
  3. Date: Thu, 1 Jun 2023 23:18:26 +0400
  4. Subject: [PATCH] Ensure cppgir is not getting installed
  5. ---
  6. external/glib/CMakeLists.txt | 2 +-
  7. 1 file changed, 1 insertion(+), 1 deletion(-)
  8. diff --git a/cmake/external/glib/CMakeLists.txt b/cmake/external/glib/CMakeLists.txt
  9. index 66385e3b..20b62a70 100644
  10. --- a/cmake/external/glib/CMakeLists.txt
  11. +++ b/cmake/external/glib/CMakeLists.txt
  12. @@ -11,7 +11,7 @@ function(add_cppgir) # isolate scope
  13. set(BUILD_TESTING OFF)
  14. set(BUILD_DOC OFF)
  15. set(CMAKE_DISABLE_FIND_PACKAGE_Qt5Core ON)
  16. - add_subdirectory(cppgir)
  17. + add_subdirectory(cppgir EXCLUDE_FROM_ALL)
  18. endfunction()
  19. add_cppgir()