Desktop GUI for the OpenMapper App
Platform | Status | Packaging |
---|---|---|
Linux | (Still failing for ARM, AMD64 should be okay) | |
macOS | TODO | |
Windows | TODO | TODO |
├── build.sh
├── CMakeLists.txt
├── doc
│ └── gui.png
├── include
│ └── openmapper_desktop
│ ├── config.h
│ ├── myglwidget.h
│ └── window.h
├── libs
│ └── OpenMapper
│ ├── CMakeLists.txt
│ ├── cmake_modules
│ ├── include
│ ├── LICENSE
│ ├── README.md
│ ├── src
│ ├── test
│ ├── thirdparty
│ ├── tools
│ └── wrapper
├── LICENSE
├── package.sh
├── README.md
├── run.sh
├── snap
│ └── snapcraft.yaml
└── src
├── main.cc
├── myglwidget.cc
├── window.cc
└── window.ui
As Debian package, Install the following dependencies first:
-
sudo apt-get install freeglut3-dev qt5-default libqt5opengl5-dev libopencv-dev libc6 libgcc1 libgl1 libqt5core5a libqt5gui5 libqt5gui5-gles libqt5opengl5 libqt5opengl5-gles libqt5widgets5 libstdc++6
-
sudo dpkg -i OpenMapperDesktop_x.y.z.deb
As Snap:
sudo snap install --devmode OpenMapperDesktop_x.y.z_arch.snap
TODO