{
  "name": "@yemaya/sdk-cpp",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "libs/yemaya/sdk-cpp/src",
  "projectType": "library",
  "tags": ["scope:yemaya", "layer:clients", "type:lib", "lang:cpp"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/build"],
      "options": {
        "cwd": "libs/yemaya/sdk-cpp",
        "commands": [
          "cmake -B build -DCMAKE_BUILD_TYPE=Release",
          "cmake --build build --config Release"
        ],
        "parallel": false
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "libs/yemaya/sdk-cpp",
        "command": "ctest --test-dir build --output-on-failure"
      }
    },
    "clean": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "libs/yemaya/sdk-cpp",
        "command": "rm -rf build"
      }
    }
  }
}
