/unified-runtime

Primary LanguageCMIT LicenseMIT

Contents

This repo contains the following:

  • API specification in YaML
  • API programming guide in RST
  • API C/C++ header files (generated)
  • API Python module (generated)
  • Sample C++ wrapper (generated)
  • Sample C/C++ import library (generated)

Source Code Generation

Code is generated using included Python scripts.

Documentation

Documentation is generated from source code using Sphinx.

Third-Party Tools

Tools can be acquired via instructions in third_party.

Building

Project is defined using CMake.

Windows: Generating Visual Studio Project. EXE and binaries will be in build/bin/{build_config}

mkdir build
cd build
cmake {path_to_source_dir} -G "Visual Studio 15 2017 Win64"

Linux: Executable and binaries will be in build/bin

mkdir build
cd build
cmake {path_to_source_dir}
make