Add tensorflow downloads folder to BYPRODUCTS

Add tensorflow download location to BYPRODUCTS for add_custom_target to
make cmake aware of the generated files. This makes 'make clean' to wipe
the folder.

Change-Id: I81535ccf0ecb8d948990fc4ec214c09213307b07
1 file changed
tree: 64f9ff9368cca68a6548035ca7722fb20a7ce26c
  1. .clang-format
  2. .gitignore
  3. CMakeLists.txt
  4. LICENSE.txt
  5. README.md
  6. applications/
  7. cmake/
  8. cmsis.cmake
  9. drivers/
  10. tensorflow.cmake
README.md

Ethos-U core software

Building

The core software is built with CMake. It is recommended to build out of tree like illustrated below.

$ mkdir build
$ cd build
$ cmake .. -DCMAKE_TOOLCHAIN_FILE=<toolchain> -DCMAKE_SYSTEM_PROCESSOR=cortex-m<nr><features>
$ make

Available build options can be listed with cmake -LH ...

Supported CPU targets are any of the Cortex-M processors with any of the supported features, for example cortex-m33+nodsp+nofp. A toolchain file is required to cross compile the software.