Sha256: 3ec393006f8cfaaf0858ff2be792bc2f55c32b0870ba16101fe51a405104abb5
Contents?: true
Size: 741 Bytes
Versions: 4
Compression:
Stored size: 741 Bytes
Contents
{ 'variables': { 'custom_malloc%' : 1, }, 'target_defaults': { 'conditions': [ ['custom_malloc==1', { 'dependencies': [ 'malloc', ], }], ], }, 'targets': [ { 'target_name': 'main', 'type': 'none', 'dependencies': [ 'main_initial',], }, { 'target_name': 'main_initial', 'type': 'executable', 'product_name': 'main', 'sources': [ 'main.c' ], }, { 'target_name': 'malloc', 'type': 'shared_library', 'variables': { 'prune_self_dependency': 1, # Targets with type 'none' won't depend on this target. 'link_dependency': 1, }, 'sources': [ 'mymalloc.c' ], }, ], }
Version data entries
4 entries across 4 versions & 2 rubygems