All Projects → fffaraz → docker-qt

fffaraz / docker-qt

Licence: MIT License
C++ Qt compile environment for Docker (Dynamically Linked, Statically Linked, and Cross-compiled to Windows)

Programming Languages

Dockerfile
14818 projects
shell
77523 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to docker-qt

opam-cross-ios
An OCaml cross-toolchain for iOS and several useful libraries
Stars: ✭ 58 (+11.54%)
Mutual labels:  cross-compiler
alpine
🌍 `alpine` Docker image for multiple architectures
Stars: ✭ 81 (+55.77%)
Mutual labels:  cross-compiler
diagnostictools
Plugin for Qt Creator (Memory and CPU usage visualizer)
Stars: ✭ 41 (-21.15%)
Mutual labels:  qtcreator
CoCoC
C development system for (Nitr)OS9/6x09, with source
Stars: ✭ 22 (-57.69%)
Mutual labels:  cross-compiler
Unreal-Qt-project-generator
A small command line tool which generates QtCreator (qmake) projects for Unreal Engine 4 game development.
Stars: ✭ 37 (-28.85%)
Mutual labels:  qtcreator
xForth
Experimental Forth cross compiler for tiny devices
Stars: ✭ 53 (+1.92%)
Mutual labels:  cross-compiler
qtcreator
🧛🏻‍♂️ Dark theme for Qt Creator
Stars: ✭ 39 (-25%)
Mutual labels:  qtcreator
cheatsh-qtcreator
Plugin for Qt Creator to view cheat sheets from cheat.sh
Stars: ✭ 20 (-61.54%)
Mutual labels:  qtcreator
xx
Dockerfile cross-compilation helpers
Stars: ✭ 124 (+138.46%)
Mutual labels:  cross-compiler
qt5-tutorials
graphics dojo Qt5
Stars: ✭ 29 (-44.23%)
Mutual labels:  qtcreator
xmake-project-manager
QtCreator XMake plugin
Stars: ✭ 19 (-63.46%)
Mutual labels:  qtcreator
ewxb-gcc-cross-compiler-builder
A script for building a full GCC + glibc toolchain from scratch (with Go support via gccgo) in multiple stages.
Stars: ✭ 18 (-65.38%)
Mutual labels:  cross-compiler
rust-crosscompiler-arm
Docker images for Rust dedicated to cross compilation for ARM v6 and more
Stars: ✭ 48 (-7.69%)
Mutual labels:  cross-compiler
RapidCopy
RapidCopy is portable version of FastCopy that runs GNU/Linux with Qt5.
Stars: ✭ 44 (-15.38%)
Mutual labels:  qtcreator
how-to-qemu-arm-gdb-gtest
How to run, debug, and unit test ARM code on X86 ubuntu
Stars: ✭ 19 (-63.46%)
Mutual labels:  cross-compiler
QtRelease Windows
practice project,Helps with QT software deployment on Windows
Stars: ✭ 13 (-75%)
Mutual labels:  qtcreator
widgetci
a Cross-Platform Widget Management App. (Win/Linux/Mac)
Stars: ✭ 36 (-30.77%)
Mutual labels:  qtcreator
BBearEditor-2.0
My own 3D engine & editor in order to learn graphics algorithms and game engine architecture.
Stars: ✭ 32 (-38.46%)
Mutual labels:  qtcreator
homebrew-i386-elf-toolchain
Homebrew formulas for buildling a valid GCC toolchain for the i386-elf target.
Stars: ✭ 62 (+19.23%)
Mutual labels:  cross-compiler
buildroot-at91
Buildroot for Microchip SoC (aka AT91) - use with buildroot external tree
Stars: ✭ 14 (-73.08%)
Mutual labels:  cross-compiler

Qt docker development environment

C++ Qt compile environment for Docker (Dynamically Linked, Statically Linked, and Cross-compiled to Windows)

  • Linux Dynamically Linked
docker build --force-rm -f Dockerfile -t fffaraz/qt:latest .
docker run --rm -it -v $(pwd):/app fffaraz/qt:latest /bin/bash
  • Linux Statically Linked
docker build --force-rm -f Dockerfile.static -t fffaraz/qt:static .
docker run --rm -it -v $(pwd):/app fffaraz/qt:static
  • Windows 64bit Cross-compiled Statically Linked
docker build --force-rm -f Dockerfile.win64s -t fffaraz/qt:win64s .
docker run --rm -it -v $(pwd):/app fffaraz/qt:win64s
cd /app
qmake
make -j $(nproc)
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].