We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b123e0 commit bbdde04Copy full SHA for bbdde04
tools/mlir-clang/CMakeLists.txt
@@ -31,6 +31,10 @@ add_clang_executable(mlir-clang
31
Lib/TypeUtils.cc
32
Lib/CGCall.cc
33
)
34
+install(TARGETS mlir-clang
35
+EXPORT PolygeistTargets
36
+RUNTIME DESTINATION ${LLVM_TOOLS_INSTALL_DIR}
37
+COMPONENT mlir-clang)
38
39
target_include_directories(mlir-clang PRIVATE
40
"${LLVM_SOURCE_DIR}/../clang/include"
tools/polygeist-opt/CMakeLists.txt
@@ -9,5 +9,10 @@ set(LIBS
9
10
add_llvm_executable(polygeist-opt polygeist-opt.cpp)
11
12
+install(TARGETS polygeist-opt
13
14
15
+COMPONENT polygeist-opt)
16
+
17
llvm_update_compile_flags(polygeist-opt)
18
target_link_libraries(polygeist-opt PRIVATE ${LIBS})
0 commit comments