blob: 3a6affb5e529481cafa390f8488574cddd69857a [file]
{
"cps_version": "0.14.0",
"name": "RequiresTest",
"cps_path": "@prefix@/cps",
"components": {
"Indirect": {
"type": "interface",
"requires": [ ":Direct" ]
},
"Direct": {
"type": "interface",
"definitions": {
"*": {
"ANSWER": 42
}
}
},
"CompileOnly": {
"type": "interface",
"compile_requires": [ ":BrokenLibrary" ]
},
"BrokenLibrary": {
"type": "archive",
"location": "@prefix@/lib/does-not-exist.a",
"definitions": {
"*": {
"ANSWER": 42
}
}
},
"Private1": {
"type": "dylib"
},
"Private2": {
"type": "dylib"
},
"Other": {
"type": "dylib",
"link_libraries": [ "every-config" ],
"dyld_requires": [ ":Private1" ],
"configurations": {
"test": {
"link_libraries": [ "test-config" ],
"dyld_requires": [ ":Private2" ]
}
}
}
}
}