Build TensorFlow Lite C library failed

I am following this :Сборка TensorFlow Lite с помощью CMake, and I want to ’ Build TensorFlow Lite C library’. I followed the steps, it says ‘Build files have been written to: C:/tflite_build’, but I can not see tensorflowlite_c.dll. Anybody knows this please help?

HI @Maggie_Ren ,

It looks like that you haven’t run the second command yet, from what i understand, you only ran the first command from the below two commands , you need to run the second command in order to build the tflite c library

cmake …/tensorflow_src/tensorflow/lite/c
cmake --build . -j --config Release

Thank You !