Home
last modified time | relevance | path

Searched full:version (Results 1 – 19 of 19) sorted by relevance

/tinycbor-2.7.6/
Dmaketag.pl15 my @v = run("git", "show", "HEAD:VERSION");
60 # Update the version files for the next patch release
68 open VERSION, ">", "VERSION" or die("Cannot open VERSION file: $!");
69 print VERSION "$v\n";
70 close VERSION;
72 open VERSION, ">", "src/tinycbor-version.h" or die("Cannot open src/tinycbor-version.h: $!");
73 print VERSION "#define TINYCBOR_VERSION_MAJOR ", $v[0], "\n";
74 print VERSION "#define TINYCBOR_VERSION_MINOR ", $v[1], "\n";
75 print VERSION "#define TINYCBOR_VERSION_PATCH ", $v[2], "\n";
76 close VERSION;
[all …]
DMakefile57 INSTALL_TARGETS += $(libdir)/libtinycbor.so.$(VERSION)
71 # Our version
74 VERSION = $(shell cat $(SRCDIR)VERSION) macro
77 VERSION := $(shell git -C $(SRCDIR). describe --tags | cut -c2-) macro
82 PACKAGE = tinycbor-$(VERSION)
101 # version using funopen or fopencookie
143 $(CC) -shared -Wl,-soname,libtinycbor.so.0 -o lib/libtinycbor.so.$(VERSION) $(LDFLAGS) $^
144 …cd lib ; ln -sf libtinycbor.so.$(VERSION) libtinycbor.so ; ln -sf libtinycbor.so.$(VERSION) libtin…
160 -e 's,@version@,$(VERSION),'
207 cd $(SRCDIR)src && VERSION=$(VERSION) doxygen $(SRCDIR)/../Doxyfile
Dtinycbor.pc.in8 Version: @version@
D.appveyor.yml1 version: 0.5-build-{build}
DDoxyfile35 PROJECT_NAME = "TinyCBOR $(VERSION) API"
38 # could be handy for archiving the generated documentation or if some version
655 # doxygen should invoke to get the current version for each file (typically from
656 # the version control system). Doxygen will invoke the program by executing (via
660 # version. For an example see the documentation.
733 # and the warning text. Optionally the format may contain $version, which will
734 # be replaced by the version of the file (if it could be obtained via
957 # (see http://www.gnu.org/software/global/global.html). You will need version
961 # - Install the latest version of global
1048 # default header when upgrading to a newer version of doxygen. For a description
/tinycbor-2.7.6/src/
Dsrc.pri13 HEADERS += $$PWD/cbor.h $$PWD/tinycbor-version.h
Dcbor_mbuf_writer.c6 * to you under the Apache License, Version 2.0 (the
Dcbor_buf_writer.c6 * to you under the Apache License, Version 2.0 (the
Dcbor_buf_reader.c6 * to you under the Apache License, Version 2.0 (the
Dcbor_mbuf_reader.c6 * to you under the Apache License, Version 2.0 (the
Dcbor.dox27 * The TinyCBOR $(VERSION) library is a small CBOR encoder and decoder library,
/tinycbor-2.7.6/include/tinycbor/
Dcbor_buf_reader.h6 * to you under the Apache License, Version 2.0 (the
Dcbor_mbuf_writer.h6 * to you under the Apache License, Version 2.0 (the
Dcbor_buf_writer.h6 * to you under the Apache License, Version 2.0 (the
Dcbor_mbuf_reader.h6 * to you under the Apache License, Version 2.0 (the
Dconfig.h6 * to you under the Apache License, Version 2.0 (the
Dcbor_cnt_writer.h6 * to you under the Apache License, Version 2.0 (the
Dcborconstants_p.h6 * to you under the Apache License, Version 2.0 (the
/tinycbor-2.7.6/tools/cbordump/
Dcbordump.c133 " -j Print a JSON equivalent version\n" in main()