https://github.com/feldim2425/copperspicehelloworld
https://github.com/feldim2425/copperspicehelloworld
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/feldim2425/copperspicehelloworld
- Owner: feldim2425
- Created: 2020-02-22T14:37:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-22T14:44:53.000Z (over 6 years ago)
- Last Synced: 2025-01-27T21:33:26.628Z (over 1 year ago)
- Language: CMake
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CopperSpice Hello World
[CopperSpice](https://www.copperspice.com) is a alternative to QT, that uses macros, templates and constant expressions instead of a meta object compiler (short moc).
## Requirements
* A C++17 compatible compiler. ``gcc`` or ``MSVC``
* CopperSpice
* Make
* CMake
## Build & Run on Linux
```shell
$ git clone https://github.com/feldim2425/CopperSpiceHelloWorld.git
$ cd CopperSpiceHelloWorld
$ mkdir build && cd build
$ cmake -DCMAKE_INSTALL_PREFIX=./install -DCS_PATH= ..
$ make
$ make install
$ ./install/HelloCopperSpice
```