https://github.com/theneuronproject/efqt-hello-world
Hello World for ef.qt
https://github.com/theneuronproject/efqt-hello-world
Last synced: 11 months ago
JSON representation
Hello World for ef.qt
- Host: GitHub
- URL: https://github.com/theneuronproject/efqt-hello-world
- Owner: TheNeuronProject
- License: mit
- Created: 2019-12-16T16:45:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-18T18:11:12.000Z (about 6 years ago)
- Last Synced: 2025-03-24T11:12:12.619Z (11 months ago)
- Language: C++
- Size: 5.86 KB
- Stars: 25
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ef.qt Hello World
Hello World for ef.qt

Screenshot above is this example running on a themed KDE desktop.
## How to build
### Using cmake
```shell script
# generate ef.hpp
efqt generate
# create build directory
mkdir build
cd build
# build
cmake ..
make -j `nproc`
# run built demo
./efqt_helloworld
```
### Using qmake
```shell script
# generate ef.hpp
efqt generate
```
Then just open this project in Qt Creator and click `Run`.