mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 05:08:54 +00:00
rebranding to libargo (there was already another lib names cson)
This commit is contained in:
parent
a708a05432
commit
deb1bde4c4
2 changed files with 7 additions and 7 deletions
4
Makefile
4
Makefile
|
@ -11,8 +11,8 @@ YFLAGS = -y -d
|
||||||
|
|
||||||
MARSHALLER_GEN = marshaller-gen
|
MARSHALLER_GEN = marshaller-gen
|
||||||
|
|
||||||
A_LIB_NAME = libcson.a
|
A_LIB_NAME = libargo.a
|
||||||
SO_LIB_NAME = libcson.so
|
SO_LIB_NAME = libargo.so
|
||||||
|
|
||||||
OBJS = obj/base.o obj/parse.o obj/query.o obj/stringify.o obj/marshaller.o
|
OBJS = obj/base.o obj/parse.o obj/query.o obj/stringify.o obj/marshaller.o
|
||||||
DEPS = $(OBJS:%.o=%.d)
|
DEPS = $(OBJS:%.o=%.d)
|
||||||
|
|
10
README.md
10
README.md
|
@ -1,6 +1,6 @@
|
||||||
# Cson
|
# libargo
|
||||||
|
|
||||||
[](https://github.com/overflowerror/Cson/actions/workflows/test-suite.yml)
|
[](https://github.com/overflowerror/libargo/actions/workflows/test-suite.yml)
|
||||||
|
|
||||||
## JSON Library for C
|
## JSON Library for C
|
||||||
|
|
||||||
|
@ -24,10 +24,10 @@ Also a `gcc` compatible compiler (or a compiler that supports GCC function attri
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
Static lib:
|
Static lib:
|
||||||
`make libcson.a`
|
`make libargo.a`
|
||||||
|
|
||||||
Shared lib:
|
Shared lib:
|
||||||
`make libcson.so`
|
`make libargo.so`
|
||||||
|
|
||||||
Base Demo program:
|
Base Demo program:
|
||||||
`make json-demo`
|
`make json-demo`
|
||||||
|
@ -245,7 +245,7 @@ pointer types: only single pointers to types that are not lists are allowed (`st
|
||||||
|
|
||||||
The marshaller generator assumes that `json.h` as well as all input files are in the include path. So make sure to compile the `OUTPUT_FILE` with the correct `-I` options.
|
The marshaller generator assumes that `json.h` as well as all input files are in the include path. So make sure to compile the `OUTPUT_FILE` with the correct `-I` options.
|
||||||
|
|
||||||
The result has to be linked with `libcson.a` or `libcson.so`.
|
The result has to be linked with `libargo.a` or `libargo.so`.
|
||||||
|
|
||||||
### Marshalling
|
### Marshalling
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue