sparker256 / Hello-World-SDK-4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hello-World-SDK-4

CMake

Using X-Plane Hello World (SDK4) Sample code from

https://developer.x-plane.com/code-sample/hello-world-sdk-3/

Create a CMake project with GitHub Actions

Building Hello-World-SDK-4 from source

On windows

  1. Install required software using Chocolatey using admin command prompt:

    choco install git
    choco install cmake --installargs '"ADD_CMAKE_TO_PATH=System"'    
    choco install mingw --version 8.1.0
    

    You can also install the same programs manually if you prefer.

  2. Checkout and configure the project:

    git clone https://github.com/sparker256/Hello-World-SDK-4.git
    cd Hello-World-SDK-4
    cmake -G "MinGW Makefiles" -S .\src -B .\build -DCMAKE_BUILD_TYPE=RelWithDebInfo
    
  3. Build the project and copy the plugin DLL into the appropriate directory:

    cmake --build .\build
    xcopy .\build\win.xpl .\HelloWorldSdk4\64\
    

On Ubuntu:

  1. Install required software:

    sudo apt-get install -y --no-install-recommends build-essential cmake git freeglut3-dev libudev-dev libopenal-dev
    
    
  2. Checkout and configure the project:

    git clone https://github.com/sparker256/Hello-World-SDK-4.git
    cd Hello-World-SDK-4
    cmake -S ./src -B ./build -DCMAKE_BUILD_TYPE=RelWithDebInfo
    
  3. Build the project and copy the plugin DLL into the appropriate directory:

    cmake --build ./build
    cp ./build/lin.xpl ./HelloWorldSdk4/64/
    

On OS X:

  1. Install XCode, Git, CMake (Homebrew can be convenient for this).

  2. Checkout and configure the project:

    git clone https://github.com/sparker256/Hello-World-SDK-4.git
    cd Hello-World-SDK-4
    cmake -S ./src -B ./build -DCMAKE_BUILD_TYPE=RelWithDebInfo
    
  3. Build the project and copy the plugin DLL into the appropriate directory:

    cmake --build ./build
    cp ./build/mac.xpl ./HelloWorldSdk4/64/
    

About

License:MIT License


Languages

Language:Pascal 48.3%Language:C 46.7%Language:C++ 3.4%Language:CMake 1.2%Language:QMake 0.3%Language:Shell 0.1%