Skip to content
代码片段 群组 项目
选择Git版本
  • 6ff2e4d55002cca7ed836dfb39fdf0c82a7f615a
  • master 默认 受保护
  • worksplit-multigpu
  • flipflop-stream
  • update-path
  • fast_cancel
  • v3-process-isolation
  • process-isolation
  • asset-management
  • cache-index-json-locales
  • expand_sampler_cfg_function
  • dd
  • diffdiff-strength
  • error-catch-fix
  • attention-select
  • fix-context-window-slicing
  • combo-output
  • clarify-io-typehint
  • fix-easycache-logs
  • js/progress-crossover-fix-clean
  • js/progress-crossover-fix
  • v0.3.65
  • v0.3.64
  • v0.3.63
  • v0.3.62
  • v0.3.61
  • v0.3.60
  • v0.3.59
  • v0.3.58
  • v0.3.57
  • v0.3.56
  • v0.3.55
  • v0.3.54
  • v0.3.53
  • v0.3.52
  • v0.3.51
  • v0.3.50
  • v0.3.49
  • v0.3.48
  • v0.3.47
  • v0.3.46
41 个结果

execution.py

Blame
  • 代码所有者
    将用户和群组指定为特定文件更改的核准人。 了解更多。
    Makefile.nmake 1.07 KiB
    CFLAGS = -W3
    
    TINYCBOR_HEADERS = src\cbor.h src\cborjson.h
    TINYCBOR_SOURCES = \
    	src\cborerrorstrings.c \
    	src\cborencoder.c \
    	src\cborencoder_close_container_checked.c \
    	src\cborparser.c \
    	src\cborparser_dup_string.c \
    	src\cborpretty.c \
    	src\cborvalidation.c
    TINYCBOR_OBJS = \
    	src\cborerrorstrings.obj \
    	src\cborencoder.obj \
    	src\cborencoder_close_container_checked.obj \
    	src\cborparser.obj \
    	src\cborparser_dup_string.obj \
    	src\cborpretty.obj \
    	src\cborvalidation.obj
    
    all: lib\tinycbor.lib
    check: tests\Makefile lib\tinycbor.lib
    	cd tests & $(MAKE) check
    silentcheck:
    	cd tests & set TESTARGS=-silent & $(MAKE) -s check
    tests\Makefile: tests\tests.pro
    	qmake -o $@ $**
    
    lib\tinycbor.lib: $(TINYCBOR_OBJS)
    	-if not exist lib\NUL md lib
    	lib -nologo /out:$@ $**
    
    mostlyclean:
    	-del $(TINYCBOR_OBJS)
    clean: mostlyclean
    	-del lib\tinycbor.lib
    	if exist tests\Makefile (cd tests & $(MAKE) clean)
    distclean: clean
    	if exist tests\Makefile (cd tests & $(MAKE) distclean)
    tag:
    	@perl maketag.pl
    
    {src\}.c{src\}.obj:
    	$(CC) -nologo $(CFLAGS) -Isrc -DTINYCBOR_VERSION_SUFFIX="" -c -Fo$@ $<