The MLTK uses CMake to build the various C++ libraries and applications.
The following describes how to setup your local PC to build applications via command-line.
Before we can build MLTK applications, we need to install a few tools first:
.. tab-set::
.. tab-item:: Windows
If you're on Windows, enable `long file paths`:
https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry
Also install the Visual Studio C++ compiler (this is needed to build some of the 3rd party Python packages for Python 3.10):
https://visualstudio.microsoft.com/visual-cpp-build-tools/
Be sure to check the **Desktop Development with C++** workload in the installer GUI.
.. tab-item:: Linux
If you're on Linux, run the following command to install the necessary packages:
.. code-block:: shell
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt update
sudo apt-get -y install build-essential g++-9 cmake ninja-build gdb p7zip-full git-lfs python3-dev python3-venv libusb-1.0-0 libgl1
CMake is a build system utility used to build the C++ applications.
Install CMake and ensure it is available on the command PATH
More details here: https://cmake.org/install
7-Zip is a file archiver with a high compression ratio.
Several of the assets downloaded by the MLTK are compressed in this format.
More details here: https://www.7-zip.org/download.html
Install Python 3.9, 3.10, 3.11, or 3.12 64-bit and ensure it is available on the command PATH
More details here: https://www.python.org/downloads
If necessary, install Git:
https://git-scm.com/downloads
git clone https://github.com/siliconlabs/mltk.git
To build from the command-line, the basic sequence is:
Various build settings may be optionally specified in the file:
<mltk repo root>/user_options.cmake
Refer to the Build Options for more details on the available settings.
# Navigate to the root of the mltk repo
cd mltk
# Configure the CMake project using the desired toolchain
# Windows toolchain
cmake -DCMAKE_TOOLCHAIN_FILE=./cpp/tools/toolchains/gcc/windows/win64_toolchain.cmake -B./build -G Ninja .
# Linux toolchain
cmake -DCMAKE_TOOLCHAIN_FILE=./cpp/tools/toolchains/gcc/linux/linux_toolchain.cmake -B./build -G Ninja .
cmake --build ./build --config Release --target mltk_model_profiler
The built executable will be in the build directory, e.g.:
./build/mltk_model_profiler.exe
Refer to the Examples documentation for more details about the applications that come with the MLTK.
Refer to the Python wrappers documentation for more details about the wrappers that come with the MLTK.