A clone of wc Unix utility written in modern C++
Whatever your platform is, make sure you have these things first:
- Make sure you have C++ build tools (available with Visual Studio).
- Install fmt package with vcpkg (
vcpkg install fmt
)
After that you can just execute build.bat
and executable will be built in build/Debug
directory.
- Make sure you have C++ compiler installed (Apple Clang is the one which comes along with XCode)
- Install fmt package with either vcpkg (
vcpkg install fmt
) or Homebrew (brew install fmt
)
After that you can just execute build.sh
and executable will be built in build
directory.
- Make sure you have C++ compiler installed (if you have Ubuntu it should be available out of the box; if you're using g++ make sure it's at least version 6 or higher)
- Install [fmt] package with either vcpkg (
vcpkg install fmt
) or via package manager for your distribution (in Ubuntu, it's available in universe repository aslibfmt-dev
)
After that you can just execute build.sh
and executable will be built in build
directory.
MIT