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 ## Ubuntu Linux
Run terminal
``` ```
mkdir learndir # Install the following if not already installed
cd learndir sudo apt update
git clone https://github.com/SpartanJ/efsw.git sudo apt install git
mkdir -p efsw/build sudo apt install cmake
cd efsw/build 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 .. cmake ..
make -j4 make -j$(nproc)
cd ../..
git clone https://git.indoodle.com/jason/joomer-efsw-file-monitoring.git # Build joomer-efsw-file-monitoring
cd 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.h
wget https://raw.githubusercontent.com/nothings/stb/master/stb_image_write.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 mkdir bin/Linux/release/test
bin/Linux/release/joomer-efsw-file-monitoring bin/Linux/release/joomer-efsw-file-monitoring
``` ```