Sha256: 8abfadaa76a5a7d401b04494d4375b4b193c0d621759ccc3e982d191e56eaf66
Contents?: true
Size: 1.69 KB
Versions: 2
Compression:
Stored size: 1.69 KB
Contents
# ========================================================================= # Ceedling - Test-Centered Build System for C # ThrowTheSwitch.org # Copyright (c) 2010-25 Mike Karlesky, Mark VanderVoord, & Greg Williams # SPDX-License-Identifier: MIT # ========================================================================= --- :dependencies: :deps: [] :tools: :deps_compiler: :executable: gcc :name: 'Dependencies compiler' :arguments: - -g - -I"$": COLLECTION_PATHS_DEPS - -D$: COLLECTION_DEFINES_DEPS - -c "${1}" - -o "${2}" :deps_linker: :executable: ar :name: 'Dependencies archiver' :arguments: - rcs - ${2} - ${1} :deps_zip: :executable: unzip :name: 'Dependencies zip unarchiver' :optional: true :arguments: - -o - ${1} # Filepath :deps_targzip: :executable: tar :name: 'Dependencies tar gzip unarchiver' :optional: true :arguments: - -xvzf - ${1} # Filepath - -C - ./ :deps_git_clone: :executable: git :name: 'Dependencies git clone' :optional: true :arguments: - clone - ${1} # Optional branch with `-b` flag - ${2} # Optional depth with `--depth` flag - ${3} # Repository source - . :deps_git_checkout: :executable: git :name: 'Dependencies git checkout' :optional: true :arguments: - checkout - ${1} # Git hash :deps_subversion: :executable: svn :name: 'Dependencies subversion' :optional: true :arguments: - checkout - ${1} # Optional branch with `--revision` flag - ${2} # Repository source - . ...
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ceedling-1.0.1 | plugins/dependencies/config/defaults.yml |
ceedling-1.0.0 | plugins/dependencies/config/defaults.yml |