File: pkgconfig

package info (click to toggle)
tomlplusplus 3.4.0%2Bds-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,860 kB
  • sloc: cpp: 52,214; python: 985; makefile: 25; sh: 17; ansic: 4
file content (10 lines) | stat: -rwxr-xr-x 229 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -eu

cd "$AUTOPKGTEST_TMP"

c++ -Wall -Wextra -Wpedantic -Werror -o simple_parser \
 "$OLDPWD/examples/simple_parser.cpp" $(pkg-config --cflags --libs tomlplusplus)

./simple_parser "$OLDPWD/examples/example.toml"