1set(LLVM_OPTIONAL_SOURCES 2 mlir_test_cblas.cpp 3 mlir_test_cblas_interface.cpp 4 ) 5 6add_llvm_library(mlir_test_cblas SHARED mlir_test_cblas.cpp) 7target_compile_definitions(mlir_test_cblas PRIVATE mlir_test_cblas_EXPORTS) 8 9add_llvm_library(mlir_test_cblas_interface SHARED mlir_test_cblas_interface.cpp) 10target_link_libraries(mlir_test_cblas_interface PRIVATE mlir_test_cblas) 11target_compile_definitions(mlir_test_cblas_interface PRIVATE mlir_test_cblas_interface_EXPORTS) 12 13