File: libargparse.cmd

package info (click to toggle)
libavif 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,956 kB
  • sloc: ansic: 29,303; cpp: 13,260; sh: 1,145; xml: 1,040; java: 307; makefile: 51
file content (18 lines) | stat: -rwxr-xr-x 849 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
: # 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