Files
llgo/chore/llcppg
2024-10-23 15:44:41 +08:00
..
2024-09-03 15:16:36 +08:00
2024-08-20 08:58:43 +08:00
2024-09-03 15:17:03 +08:00
2024-09-03 15:17:03 +08:00
2024-10-23 15:44:41 +08:00
2024-07-25 17:23:34 +08:00

llcppg - Autogen tool for C/C++ libraries

Usage

llcppg [config-file]

If config-file is not specified, a llcppg.cfg file is used in current directory. The configuration file format is as follows:

{
  "name": "inireader",
  "cflags": "$(pkg-config --cflags inireader)",
  "include": [
    "INIReader.h",
    "AnotherHeaderFile.h"
  ],
  "libs": "$(pkg-config --libs inireader)",
  "trimPrefixes": ["Ini", "INI"]
}

Design

See llcppg Design.