blob: 1470e09775ba12cdbac6dc90661ce6b3b9ff2644 [file] [log] [blame] [edit]
: # Script to get a local build of libargparse (not to be confused with other similarly named libraries)
: # needed by some of the command line tools in the apps/ directory e.g. avifgainmaputil.
: # The odd choice of comment style in this file is to try to share this script between *nix and win32.
: # cmake and ninja must be in your PATH.
: # If you're running this on Windows, be sure you've already run this (from your VC2019 install dir):
: # "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\Build\vcvars64.bat"
git clone https://github.com/maryla-uc/libargparse.git
cd libargparse
git checkout 81998ffafb9c2ac8cf488d31e536a2e6fd6b3fdf
cd ..
cmake -G Ninja -S libargparse -B libargparse/build -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release
cmake --build libargparse/build --config Release --parallel