Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 800 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 800 Bytes

zExplorer

A terminal-based file explorer.

This program is made with the objective of providing a lightweight file explorer, accessible via terminal interface and more user-friendly than the traditional commands.


Dependencies

A dependency for this program is ncurses


Requirements for compiling

  1. g++
  2. ncurses headers and binaries
  3. source code

Command

Linux platforms

g++ -std=c++17 -o bin/zExplorer src/*.cpp -lncurses -Wl,-rpath=. -static-libgcc -static-libstdc++

Windows platforms

g++ -std=c++17 -I<path to ncurses headers> -o bin/zExplorer src/*.cpp -lncurses -DNCURSES_STATIC  -static-libgcc -static-libstdc++

Any bugfixes and pull requests, especially on managing errors, are appreciated.