forked from OSchip/llvm-project
Replace usages of 'add_executable' with 'add_llvm_executable'.
-- PiperOrigin-RevId: 250691487
This commit is contained in:
parent
4a697a91de
commit
11e485ca19
|
@ -52,7 +52,7 @@ add_llvm_library(Linalg1DialectConstruction
|
|||
)
|
||||
target_link_libraries(Linalg1DialectConstruction PUBLIC Linalg1)
|
||||
|
||||
add_executable(linalg1-opt
|
||||
add_llvm_executable(linalg1-opt
|
||||
DialectRegistration.cpp
|
||||
)
|
||||
llvm_update_compile_flags(linalg1-opt)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
add_executable(mlir-edsc-builder-api-test
|
||||
add_llvm_executable(mlir-edsc-builder-api-test
|
||||
builder-api-test.cpp
|
||||
)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
add_executable(mlir-sdbm-api-test
|
||||
add_llvm_executable(mlir-sdbm-api-test
|
||||
sdbm-api-test.cpp
|
||||
)
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ target_link_libraries(MLIRTestDialect
|
|||
LLVMSupport
|
||||
)
|
||||
|
||||
add_executable(mlir-test-opt
|
||||
add_llvm_executable(mlir-test-opt
|
||||
${MLIR_MAIN_SRC_DIR}/../tools/mlir-opt/mlir-opt.cpp
|
||||
)
|
||||
llvm_update_compile_flags(mlir-test-opt)
|
||||
|
|
|
@ -23,7 +23,7 @@ add_llvm_library(MLIRCPURunnerLib
|
|||
)
|
||||
target_link_libraries(MLIRCPURunnerLib ${LIBS})
|
||||
|
||||
add_executable(mlir-cpu-runner
|
||||
add_llvm_executable(mlir-cpu-runner
|
||||
mlir-cpu-runner.cpp
|
||||
)
|
||||
llvm_update_compile_flags(mlir-cpu-runner)
|
||||
|
|
|
@ -34,7 +34,7 @@ set(LIBS
|
|||
MLIRSupport
|
||||
MLIRVectorOps
|
||||
)
|
||||
add_executable(mlir-opt
|
||||
add_llvm_executable(mlir-opt
|
||||
mlir-opt.cpp
|
||||
)
|
||||
llvm_update_compile_flags(mlir-opt)
|
||||
|
|
|
@ -12,7 +12,7 @@ set(LIBS
|
|||
MLIRSupport
|
||||
MLIRVectorOps
|
||||
)
|
||||
add_executable(mlir-translate
|
||||
add_llvm_executable(mlir-translate
|
||||
mlir-translate.cpp
|
||||
)
|
||||
llvm_update_compile_flags(mlir-translate)
|
||||
|
|
Loading…
Reference in New Issue