code review changes on linux

This commit is contained in:
Jason Ly 2026-02-07 20:55:58 -05:00
parent 919d8ebf18
commit fcb1bffb00

View File

@ -25,20 +25,34 @@ learndir/
```
## Ubuntu Linux
Run terminal
```
mkdir learndir
cd learndir
git clone https://github.com/SpartanJ/efsw.git
mkdir -p efsw/build
cd efsw/build
# Install the following if not already installed
sudo apt update
sudo apt install git
sudo apt install cmake
sudo apt install build-essential cmake # build-essential contains gcc,g++ and make
# create all the directories needed
mkdir learndir && cd learndir
mkdir efsw joomer-efsw-file-monitoring
# Build Entropia File System Watcher
cd efsw
git clone https://github.com/SpartanJ/efsw.git .
mkdir -p build
cd build
cmake ..
make -j4
cd ../..
git clone https://git.indoodle.com/jason/joomer-efsw-file-monitoring.git
cd joomer-efsw-file-monitoring
make -j$(nproc)
# Build joomer-efsw-file-monitoring
cd ../../joomer-efsw-file-monitoring
git clone https://git.indoodle.com/jason/joomer-efsw-file-monitoring.git .
wget https://raw.githubusercontent.com/nothings/stb/master/stb_image.h
wget https://raw.githubusercontent.com/nothings/stb/master/stb_image_write.h
make all -j4
make all -j$(nproc)
mkdir bin/Linux/release/test
bin/Linux/release/joomer-efsw-file-monitoring
```