Searched +full:config +full:- (Results 1 – 11 of 11) sorted by relevance
/tinycbor-2.7.6/ |
D | .travis.yml | 4 - os: linux 8 - ubuntu-toolchain-r-test 9 - sourceline: 'ppa:beineri/opt-qt593-trusty' 11 - qt59base valgrind 12 - g++-7 14 - QMAKESPEC=linux-g++ 15 - EVAL="CC=gcc-7 && CXX=g++-7" 16 - CFLAGS="-Os" 17 - QMAKEFLAGS="-config release" 18 - os: linux [all …]
|
D | .appveyor.yml | 1 version: 0.5-build-{build} 5 - Visual Studio 2015 6 - Visual Studio 2013 7 - Visual Studio 2017 9 - cmd: >- 20 - cmd: >- 21 nmake -f Makefile.nmake -nologo CFLAGS="-W3 -Os -MDd" 25 if /i "%tests%"=="1" qmake CONFIG-=release CONFIG+=debug 27 if /i "%tests%"=="1" nmake -nologo -s 29 - cmd: >- [all …]
|
D | Makefile | 9 CFLAGS = -Wall -Wextra 10 LDFLAGS_GCSECTIONS = -Wl,--gc-sections 11 LDFLAGS = $(if $(gc_sections-pass),$(LDFLAGS_GCSECTIONS)) 13 GIT_ARCHIVE = git archive --prefix="$(PACKAGE)/" -9 15 INSTALL_DATA = $(INSTALL) -m 644 16 INSTALL_PROGRAM = $(INSTALL) -m 755 18 MKDIR = mkdir -p 43 BUILD_SHARED = $(shell file -L /bin/sh 2>/dev/null | grep -q ELF && echo 1) 72 GIT_DIR := $(strip $(shell git -C $(SRCDIR). rev-parse --git-dir 2> /dev/null)) 77 VERSION := $(shell git -C $(SRCDIR). describe --tags | cut -c2-) [all …]
|
D | maketag.pl | 4 open PROC, "-|", @_ or die("Cannot run $_[0]: $!"); 27 my @result = run("git", "config", "--get", "commit.template"); 36 open LOG, "-|", "git", "shortlog", "-e", "--no-merges", "--not", @tags; 41 open DIFF, "-|", "git", "diff", "HEAD", "--not", @tags, "--", 'src/*.h', ':!*_p.h'; 57 system("git", "tag", "-a", "-F", $tagfile, split(' ', $ENV{GITTAGFLAGS}), "v$v"); 65 ++$v[-1]; 72 open VERSION, ">", "src/tinycbor-version.h" or die("Cannot open src/tinycbor-version.h: $!"); 80 s/^version:.*/version: $v[0].$v[1].$v[2]-build-{build}/;
|
D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 20 # This tag specifies the encoding used for all characters in the config file 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII [all …]
|
/tinycbor-2.7.6/tools/cbordump/ |
D | cbordump.pro | 2 CONFIG += console 3 CONFIG -= app_bundle 4 CONFIG -= qt
|
/tinycbor-2.7.6/tools/json2cbor/ |
D | json2cbor.pro | 2 CONFIG += console 3 CONFIG -= app_bundle 4 CONFIG -= qt
|
/tinycbor-2.7.6/src/ |
D | tinycbor.pro | 2 CONFIG += static 3 CONFIG -= qt
|
D | src.pri | 13 HEADERS += $$PWD/cbor.h $$PWD/tinycbor-version.h 18 CONFIG(release, debug|release): DEFINES += NDEBUG
|
/tinycbor-2.7.6/examples/ |
D | simplereader.pro | 1 CONFIG -= qt
|
/tinycbor-2.7.6/include/tinycbor/ |
D | cbor.h | 28 #include "tinycbor/config.h" 49 * So -1 gets converted to size_t by adding SIZE_MAX + 1, which results in SIZE_MAX. 51 # define SIZE_MAX ((size_t)-1) 98 CborDateTimeStringTag = 0, /* RFC 3339 format: YYYY-MM-DD hh:mm:ss+zzzz */ 111 CborMimeMessageTag = 36, /* RFC 2045-2047 */ 203 { return encoder->writer->bytes_written; } in cbor_encode_bytes_written() 205 { return cbor_encode_simple_value(encoder, (int)value - 1 + (CborBooleanType & 0x1f)); } in cbor_encode_boolean() 276 { return it->remaining == 0; } in cbor_value_at_end() 280 { return it->type == CborArrayType || it->type == CborMapType; } in cbor_value_is_container() 287 return value->flags & CborIteratorFlag_IntegerValueTooLarge ? in _cbor_value_extract_int64_helper() [all …]
|