1655030220
LiteIDE is a simple, open source, cross-platform Go IDE.
Core features
Advanced code editor
Golang support
liteide [files|folder] [--select-env id] [--local-setting] [--user-setting] [--reset-setting]
--select-env [system|win32|cross-linux64|...] select init environment id
--local-setting force use local setting
--user-setting force use user setting
--reset-setting reset current setting ( clear setting file)
go get -u github.com/visualfc/gotools
go get -u github.com/visualfc/gocode
Windows/Linux: copy GOPATH/bin gotools and gocode to liteide/bin
MacOS: copy GOPATH/bin gotools and gocode to LiteIDE.app/Contents/MacOS
Author: Visualfc
Source Code: https://github.com/visualfc/liteide
License: LGPL-2.1 license
1649218980
Qt is a free and open-source widget toolkit for creating graphical user interfaces as well as cross-platform applications that run on various software and hardware platforms with little or no change in the underlying codebase.
Go, also known as Golang, is a programming language designed at Google.
therecipe/qt allows you to write Qt applications entirely in Go, JavaScript/TypeScript, Dart/Flutter, Haxe and Swift
Beside the language bindings provided, therecipe/qt
also greatly simplifies the deployment of Qt applications to various software and hardware platforms.
At the time of writing, almost all Qt functions and classes are accessible, and you should be able to find everything you need to build fully featured Qt applications.
Gallery of example applications.
The following instructions assume that you already installed Go and Git
Windows
go get -ldflags="-w" github.com/therecipe/examples/basic/widgets && for /f %v in ('go env GOPATH') do %v\bin\widgets.exe
macOS/Linux
go get -ldflags="-w" github.com/therecipe/examples/basic/widgets && $(go env GOPATH)/bin/widgets
Windows (more info)
set GO111MODULE=off
go get -v github.com/therecipe/qt/cmd/... && for /f %v in ('go env GOPATH') do %v\bin\qtsetup test && %v\bin\qtsetup -test=false
macOS (more info)
export GO111MODULE=off; xcode-select --install; go get -v github.com/therecipe/qt/cmd/... && $(go env GOPATH)/bin/qtsetup test && $(go env GOPATH)/bin/qtsetup -test=false
Linux (more info)
export GO111MODULE=off; go get -v github.com/therecipe/qt/cmd/... && $(go env GOPATH)/bin/qtsetup test && $(go env GOPATH)/bin/qtsetup -test=false
Target | Arch | Linkage | Docker Deployment | Host OS |
---|---|---|---|---|
Windows | 32 / 64 | dynamic / static | Yes | Any |
macOS | 64 | dynamic | Yes | Any |
Linux | arm / arm64 / 64 | dynamic / static / system | Yes | Any |
Android (+Wear) | arm / arm64 | dynamic | Yes | Any |
Android-Emulator (+Wear) | 32 | dynamic | Yes | Any |
SailfishOS | arm | system | Yes | Any |
SailfishOS-Emulator | 32 | system | Yes | Any |
Raspberry Pi (1/2/3) | arm | dynamic / system | Yes | Any |
Ubuntu Touch | arm / 64 | system | Yes | Any |
JavaScript | 32 | static | Yes | Any |
WebAssembly | 32 | static | Yes | Any |
iOS | arm64 | static | No | macOS |
iOS-Simulator | 64 | static | No | macOS |
AsteroidOS | arm | system | No | Linux |
FreeBSD | 32 / 64 | system | No | FreeBSD |
Author: Therecipe
Source Code: https://github.com/therecipe/qt
License: LGPL-3.0 License
1618318920
Qt 6 is a new major release of Qt, the free and open-source, cross-platform toolkit for creating GUI apps that powers Linux’s KDE desktop environment. While striving to keep full source compatibility, Qt 6 brings many changes, including improved QML, a new graphic architecture, C++17 support, improved tooling, and more.
Qt 6 keeps its adherence to the usual Qt tenets, including cross-platform support, scalability across multiple form factors, maintainability and compatibility with previous versions.
#cross platform #qt #c++ 17 #macos #linux #gui #windows #development #news
1590917697
In this article, a step by step guide is provided for building OpenCV from source with GStreamer, QT , OpenCV contrib and CUDA packages. At the end of the tutorial, we will develop a GStreamer pipeline using OpenCV to stream webcam to localhost, receive the data and show the stream using GStreamer-CLI. In the next section, we will download the source files and install the required tools for building OpenCV with GStreamer.
#gstreamer #opencv #qt #development #programming