[clang-tools-extra] [clang-doc] fix paths by hard coding path to share (PR #98099)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 8 16:35:38 PDT 2024
https://github.com/PeterChou1 created https://github.com/llvm/llvm-project/pull/98099
Fixes https://github.com/llvm/llvm-project/issues/97507
The previous patch I put up broke clang's standalone build, this patch is a hack workaround so that the clang-docs tests can pass regression test without breaking visual studio build and other standalone clang builds
>From 6e0cbfa80e3a4b36d04903a17e1493eb45a50893 Mon Sep 17 00:00:00 2001
From: PeterChou1 <peter.chou at mail.utoronto.ca>
Date: Mon, 8 Jul 2024 19:31:16 -0400
Subject: [PATCH] [clang-doc] fix paths by hard coding path to share
---
clang-tools-extra/clang-doc/tool/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clang-tools-extra/clang-doc/tool/CMakeLists.txt b/clang-tools-extra/clang-doc/tool/CMakeLists.txt
index e93a5728d6b6b..601a0460d76b3 100644
--- a/clang-tools-extra/clang-doc/tool/CMakeLists.txt
+++ b/clang-tools-extra/clang-doc/tool/CMakeLists.txt
@@ -25,7 +25,7 @@ set(assets
)
set(asset_dir "${CMAKE_CURRENT_SOURCE_DIR}/../assets")
-set(resource_dir "${CMAKE_BINARY_DIR}/share/clang-doc")
+set(resource_dir "${LLVM_RUNTIME_OUTPUT_INTDIR}/../share/clang-doc")
set(out_files)
function(copy_files_to_dst src_dir dst_dir file)
More information about the cfe-commits
mailing list