From fcb1bffb00177f071991c04a1fcee3724e7c2517 Mon Sep 17 00:00:00 2001 From: Jason Ly Date: Sat, 7 Feb 2026 20:55:58 -0500 Subject: [PATCH] code review changes on linux --- README.md | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b59aa21..1137dc7 100644 --- a/README.md +++ b/README.md @@ -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 ```