This folder contains the Nodos modules that are distributed with Nodos.
- Download latest Nodos release from nodos.dev
- Clone the repository under Nodos workspace Module directory
git clone https://github.com/mediaz/nos-modules.git --recurse-submodules Module/nos-modules
- Generate project files from workspace root directory using CMake:
cmake -S ./Toolchain/CMake -B Build
- Build the project:
cmake --build Build
A plugin structure is as follows:
SomePlugin/
├─ SomePlugin.noscfg (or .nossys if a subsystem)
├─ Binaries/ (shipped)
│ ├─ SomePlugin.dll
├─ Config/ (shipped)
│ ├─ SomePlugin.fbs
│ ├─ SomePlugin.nosdef
├─ Source/ (example)
│ ├─ SomePlugin.cpp