Forwarded here: https://lists.gnu.org/archive/html/jami/2024-01/msg00007.html From a302dc0a0faf2778331745a1d01bc3071e182d4d Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Mon, 8 Jan 2024 16:07:05 -0500 Subject: [PATCH] build: Allow using system-provided md4c and tidy libraries. * CMakeLists.txt : Search for libraries in the system first, falling back to bundled copies in case they aren't found. Series-to: jami@gnu.org Fixes: Change-Id: I637959fefce6a21b0ee73a793acb6c3c42dcdce0 --- CMakeLists.txt | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e802357f..6d2dccfb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -600,20 +600,34 @@ add_subdirectory(3rdparty/SortFilterProxyModel) set(SFPM_OBJECTS $
aboutsummaryrefslogtreecommitdiff
path: root/etc
LUDE_FROM_ALL) + list(APPEND CLIENT_LINK_DIRS ${tidy_BINARY_DIR}/Release) + list(APPEND CLIENT_INCLUDE_DIRS ${tidy_SOURCE_DIR}/include) + list(APPEND CLIENT_LIBS tidy-static) +endif() # common executable sources qt_add_executable( base-commit: a4300308dc8d03d59f620bb5fed753df5cf31ed9 -- 2.41.0
AgeCommit message (Expand)Author
2024-09-21.dir-locals.el: Add tempel snippets....Change-Id: Ic16f571f26fffee12e478e00c54be55e6eb90831 Signed-off-by: jgart <jgart@dismail.de> Nicolas Graves