Sample CPS FileΒΆ

The following presents a simple example of a .cps file. This example includes a header-only CABI library, a compiled CABI library with four configurations (static/shared and debug/optimized), an executable tool, and a Java archive. Many of the most commonly used attributes are demonstrated, as is the technique discussed in Configurations as Flags.

{
  "name": "sample",
  "description": "Sample CPS",
  "license": "BSD",
  "version": "1.2.0",
  "compat_version": "0.8.0",
  "platform": {
    "isa": "x86_64",
    "kernel": "linux",
    "c_runtime_vendor": "gnu",
    "c_runtime_version": "2.20",
    "jvm_version": "1.6"
  },
  "configurations": [ "optimized", "debug" ],
  "default_components": [ "sample" ],
  "components": {
    "sample-core": {
      "type": "interface",
      "definitions": [ "SAMPLE" ],
      "includes": [ "@prefix@/include" ]
    },
    "sample": {
      "type": "interface",
      "configurations": {
        "shared": {
          "requires": [ ":sample-shared" ]
        },
        "static": {
          "requires": [ ":sample-static" ]
        }
      }
    },
    "sample-shared": {
      "type": "dylib",
      "requires": [ ":sample-core" ],
      "configurations": {
        "optimized": {
          "location": "@prefix@/lib64/libsample.so.1.2.0"
        },
        "debug": {
          "location": "@prefix@/lib64/libsample_d.so.1.2.0"
        }
      }
    },
    "sample-static": {
      "type": "archive",
      "definitions": [ "SAMPLE_STATIC" ],
      "requires": [ ":sample-core" ],
      "configurations": {
        "optimized": {
          "location": "@prefix@/lib64/libsample.a"
        },
        "debug": {
          "location": "@prefix@/lib64/libsample_d.a"
        }
      }
    },
    "sample-tool": {
      "type": "exe",
      "location": "@prefix@/bin/sample-tool"
    },
    "sample-java": {
      "type": "jar",
      "location": "@prefix@/share/java/sample.jar"
    }
  }
}