{
  "name": "bellona-sdk-cpp",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "libs/bellona/sdk-cpp",
  "projectType": "library",
  "tags": ["scope:bellona", "type:sdk", "lang:cpp"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/build"],
      "options": {
        "cwd": "libs/bellona/sdk-cpp",
        "command": "cmake -B build -DCMAKE_BUILD_TYPE=Release -DBELLONA_ENABLE_INSTALL=OFF && cmake --build build --config Release"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "libs/bellona/sdk-cpp",
        "command": "cmake --build build --target test"
      }
    },
    "clean": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "libs/bellona/sdk-cpp",
        "command": "rm -rf build"
      }
    }
  }
}
