File: pkgconfig

package info (click to toggle)
tomlplusplus 3.3.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,184 kB
  • sloc: cpp: 35,145; ansic: 2,220; python: 983; makefile: 25; sh: 17
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"