File: get_libfmt

package info (click to toggle)
knxd 0.14.73-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,860 kB
  • sloc: cpp: 24,913; ansic: 4,936; pascal: 3,728; makefile: 529; sh: 297; ruby: 132; java: 65; python: 40
file content (11 lines) | stat: -rwxr-xr-x 232 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
echo using CC=$CC
echo using CXX=$CXX
set -ex
test -d libfmt || git clone https://github.com/fmtlib/fmt libfmt
cd libfmt
git fetch
git checkout 4.x || git checkout -b 4.x origin/4.x
git merge origin/4.x
cmake .
make fmt