Compilation
Plug-in SDK Compilation
Source Code
git clone https://github.com/learn-safran-navigation-timing/skydel-plug-ins
Qt Creator
In Qt Creator, open the CMakeLists.txt file from the root folder:
Command Line
mkdir build && cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
sudo cmake --install .
Additional CMake Arguments
Argument
Description
Default Value
CMAKE_INSTALL_PREFIX
Destination folder of the Plug-ins SDK
-
PLUGIN_INSTALL_DIR
Destination folder of the examples
$HOME/Documents/Skydel-SDX/Plug-ins
Plug-in Examples Compilation
Source Code
git clone https://github.com/learn-safran-navigation-timing/skydel-example-plugins
Compilation
The compiled plugin examples will be located in your build folder / source / plugin-name as a .so or .dll file.
Using the SDK in an Other CMake Project
After installing the SDK, It can be imported into your own CMake project by adding the following lines in your CMakeLists:
find_package(SkydelPlugin)
target_link_libraries(MyPlugin PUBLIC Skydel::SkydelPlugin)
Last updated