2024-09-16 11:13:11 +08:00
|
|
|
# This is a peer-to-peer chat software
|
|
|
|
|
2024-11-04 23:11:45 +08:00
|
|
|
- use the follow instruction to install required packages
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo apt install libwayland-dev wayland-protocols pkg-config libx11-dev xorg-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxkbcommon-dev vulkan-tools libvulkan-dev vulkan-utility-libraries-dev
|
|
|
|
```
|
|
|
|
|
2024-09-16 11:13:11 +08:00
|
|
|
- use the follow instruction to build it
|
|
|
|
|
2024-09-16 01:33:21 +08:00
|
|
|
```
|
2024-09-16 11:13:11 +08:00
|
|
|
git clone --recurse-submodules https://github.com/54108/Atom.git
|
2024-09-16 01:26:08 +08:00
|
|
|
mkdir build && cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
2024-09-16 11:20:23 +08:00
|
|
|
```
|
|
|
|
- use the follow instruction to run it
|
|
|
|
```
|
|
|
|
./atom
|
|
|
|
```
|
|
|
|
|
|
|
|
### now it is linux only and just have main window.
|