2021-06-24 15:02:35 -04:00
# Status-desktop
Desktop client for the [Status Network ](https://statusnetwork.com/ ) built with [Nim ](https://nim-lang.org/ ) and [Qt ](https://www.qt.io/ )
![https://github.com/status-im/nim-status-client/blob/master/screenshot.png ](https://github.com/status-im/nim-status-client/blob/master/screenshot.png )
2021-06-24 15:08:47 -04:00
Dev Docs: [https://hackmd.io/@status-desktop/B1naRjxh_/https%3A%2F%2Fhackmd.io%2F%40status-desktop%2FB1eOaf-nd ](https://hackmd.io/@status-desktop/B1naRjxh_/https%3A%2F%2Fhackmd.io%2F%40status-desktop%2FB1eOaf-nd )
2021-06-24 15:02:35 -04:00
2022-01-06 15:29:19 -04:00
2022-01-18 12:39:21 +01:00
# CPP App
Buid& test& run:
2022-01-06 15:29:19 -04:00
```
cd build
2022-01-18 12:39:21 +01:00
conan install .. -s build_type=Release --build=missing
conan build ..
ctest -VV -C Release
./status-desktop
```
Instead of `conan build ..` CMake may be used:
```
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake
cmake --build . --config Release
```