Mercurial > hg > CbC > CbC_llvm
annotate mlir/test/mlir-cpu-runner/CMakeLists.txt @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children | 0572611fdcc8 |
rev | line source |
---|---|
150 | 1 set(LLVM_OPTIONAL_SOURCES |
2 cblas.cpp | |
3 cblas_interface.cpp | |
4 mlir_runner_utils.cpp | |
5 ) | |
6 | |
7 add_llvm_library(cblas SHARED cblas.cpp) | |
8 target_compile_definitions(cblas PRIVATE cblas_EXPORTS) | |
9 | |
10 add_llvm_library(cblas_interface SHARED cblas_interface.cpp) | |
11 target_link_libraries(cblas_interface PRIVATE cblas) | |
12 target_compile_definitions(cblas_interface PRIVATE cblas_interface_EXPORTS) | |
13 | |
14 add_llvm_library(mlir_runner_utils SHARED mlir_runner_utils.cpp) | |
15 target_compile_definitions(mlir_runner_utils PRIVATE mlir_runner_utils_EXPORTS) |