All Projects → sparker256 → xsaitekpanels

sparker256 / xsaitekpanels

Licence: other
Automatically exported from code.google.com/p/xsaitekpanels

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
pascal
1382 projects
CMake
9771 projects
shell
77523 projects
QMake
1090 projects

Xsaitekpanels X-Plane plugin for

Saitek Switch, Radio, Multi & BIP panels.

=========================

Author

Xsaitekpanels is written by William R. Good.

This project is and will be continue to be completely free, but if you want to support it by means of donation, I really would appreciate that.

Thank you,

Bill

CMake

Building Xsaitekpanels from source

On windows

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

    choco install git cmake
    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/xsaitekpanels.git
    cd xsaitekpanels
    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
    cp .\build\win.xpl .\Xsaitekpanels\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/xsaitekpanels.git
    cd xsaitekpanels
    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
    mkdir ./Xsaitekpanels/64
    cp ./build/lin.xpl ./Xsaitekpanels/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/xsaitekpanels.git
    cd xsaitekpanels
    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
    mkdir ./Xsaitekpanels/64
    cp ./build/mac.xpl ./Xsaitekpanels/64/
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].