Searched full:version (Results 1 – 19 of 19) sorted by relevance
/tinycbor-2.7.6/ |
D | maketag.pl | 15 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 …]
|
D | Makefile | 57 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
|
D | tinycbor.pc.in | 8 Version: @version@
|
D | .appveyor.yml | 1 version: 0.5-build-{build}
|
D | Doxyfile | 35 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/ |
D | src.pri | 13 HEADERS += $$PWD/cbor.h $$PWD/tinycbor-version.h
|
D | cbor_mbuf_writer.c | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor_buf_writer.c | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor_buf_reader.c | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor_mbuf_reader.c | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor.dox | 27 * The TinyCBOR $(VERSION) library is a small CBOR encoder and decoder library,
|
/tinycbor-2.7.6/include/tinycbor/ |
D | cbor_buf_reader.h | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor_mbuf_writer.h | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor_buf_writer.h | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor_mbuf_reader.h | 6 * to you under the Apache License, Version 2.0 (the
|
D | config.h | 6 * to you under the Apache License, Version 2.0 (the
|
D | cbor_cnt_writer.h | 6 * to you under the Apache License, Version 2.0 (the
|
D | cborconstants_p.h | 6 * to you under the Apache License, Version 2.0 (the
|
/tinycbor-2.7.6/tools/cbordump/ |
D | cbordump.c | 133 " -j Print a JSON equivalent version\n" in main()
|