{
    "targets": [{
        "target_name": "cloud_client_window_helper",
        "cflags!": [ "-fno-exceptions" ],
        "cflags_cc!": [ "-fno-exceptions" ],
        "sources": [
            "src/main.cc"
        ],
        "conditions":[
            ["OS=='mac'", {
                "sources": [ "src/main_mac.cc" ]
            }],
            ["OS=='win'", {
                "sources": [ "src/main_win.cc" ]
            }]
        ],
        'include_dirs': [
            "<!@(node -p \"require('node-addon-api').include\")"
        ],
        'libraries': [],
        'dependencies': [
            "<!(node -p \"require('node-addon-api').gyp\")"
        ],
        'defines': [ 'NAPI_DISABLE_CPP_EXCEPTIONS' ]
    }]
}