Notes: Debian Based linux's include: Debian, Ubuntu, and Mint
- Use Linux or Mac.
- Seriously, who does this stuff with Windoze?
- Ensure you have your basic build tools installed:
- Linux (Debian Based):
sudo apt install build-essential - Mac: Install XCode from the App Store
- Linux (Debian Based):
- Ensure zlib is installed:
- Linux (Debian Based):
sudo apt install zlib1g-dev - Mac (with HomeBrew):
brew install zlib
- Linux (Debian Based):
- Ensure CERN's ROOT Framework is installed:
- Linux (most flavors): Go through annoying ROOT build and install procedure
- Mac (with HomeBrew):
brew install root
- Ensure CMake is Installed:
- Linux(Debian Based):
sudo apt install cmake - Mac (with HomeBrew):
brew install cmake
- Linux(Debian Based):
- Open a terminal and navigate to a directory for code projects
- Clone this Repository (
git clone git@github.com:jmatta1/SimpleDgsSort.gitorgit clone https://github.com/jmatta1/SimpleDgsSort.git) - Navigate into the directory created
cd SimpleDgsSort - Enter the command
make -j <num> releasewhere is the number of cores to use for building.