{"id":24746580,"url":"https://github.com/samuelmarks/premiere-pro-cmake-plugin","last_synced_at":"2026-01-27T12:36:38.433Z","repository":{"id":150265392,"uuid":"381034049","full_name":"SamuelMarks/premiere-pro-cmake-plugin","owner":"SamuelMarks","description":"CMake starter for cross-platform Premiere Pro plugin development","archived":false,"fork":false,"pushed_at":"2022-10-18T02:04:14.000Z","size":142,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-31T08:30:42.259Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CMake","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SamuelMarks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-28T13:04:33.000Z","updated_at":"2025-03-27T20:12:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"db56a7b0-5a0e-4bfc-8a45-0bc4424ec634","html_url":"https://github.com/SamuelMarks/premiere-pro-cmake-plugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SamuelMarks/premiere-pro-cmake-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelMarks%2Fpremiere-pro-cmake-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelMarks%2Fpremiere-pro-cmake-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelMarks%2Fpremiere-pro-cmake-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelMarks%2Fpremiere-pro-cmake-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SamuelMarks","download_url":"https://codeload.github.com/SamuelMarks/premiere-pro-cmake-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SamuelMarks%2Fpremiere-pro-cmake-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28813215,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T12:25:15.069Z","status":"ssl_error","status_checked_at":"2026-01-27T12:25:05.297Z","response_time":168,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-28T04:29:28.649Z","updated_at":"2026-01-27T12:36:38.417Z","avatar_url":"https://github.com/SamuelMarks.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"premiere-pro-cmake-plugin\n=========================\n[![build and test](https://github.com/SamuelMarks/premiere-pro-cmake-plugin/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/SamuelMarks/premiere-pro-cmake-plugin/actions/workflows/build-and-test.yml)\n[![License](https://img.shields.io/badge/license-Apache--2.0%20OR%20MIT-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n[Adobe](https://adobe.com) provides a C++ API to build plugins for its suite, including [Premiere Pro](https://www.adobe.com/au/products/premiere.html).\n\nUnfortunately they provide separate [MSVC](https://visualstudio.microsoft.com/vs) and [XCode](https://developer.apple.com/xcode) project files, meaning additional build flags and dependencies (like third-party libraries) need to be manually added to each.\n\nCMake has become the default 'standard' for cross-platform builds; popularly for C and C++.\n\nThis project aims to be a good starter for cross-platform Premiere Pro plugin development, including those that have third-party dependencies.\n\n## vcpkg\n[`vcpkg`](https://vcpkg.io) is an open-source cross-platform library package management system from [Microsoft](https://microsoft.com); targeting macOS, Linux, and Windows.\n\nIt's very popular, and has strong CMake integration. Henceforth, it is chosen for this project as an example of third-party library integration.\n\n[Install vcpkg](https://vcpkg.io/en/getting-started.html), configure it with your system. Then run:\n\n    [root]/vcpkg/vcpkg install openssl zlib\n\n## Premiere Pro SDK\nDue to licensing issues, this cannot be included directly. You must specify it in the [build](#Build) step with `-DADOBE_PP_SDK`. Download the SDK here; then unzip: https://console.adobe.io/servicesandapis\n\nTested with:\n\n  - Premiere Pro CC 13.0 Mac SDK [CC 2019 ; Release 1 - Oct 2018]\n    - unzip and set `-DADOBE_PP_SDK` to that dir\n\n## Build\n\n    $ mkdir 'cmake-build-debug' \u0026\u0026 cd \"$_\"\n    $ cmake -DCMAKE_TOOLCHAIN_FILE='[root]/vcpkg/scripts/buildsystems/vcpkg.cmake' \\\n            -DADOBE_PP_SDK='[path_to_pp_sdk]' \\\n            -DCMAKE_BUILD_TYPE='Debug' \\\n            ..\n    $ cmake --build .\n\n---\n\n## License\n\nLicensed under either of\n\n- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or \u003chttps://www.apache.org/licenses/LICENSE-2.0\u003e)\n- MIT license ([LICENSE-MIT](LICENSE-MIT) or \u003chttps://opensource.org/licenses/MIT\u003e)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in the work by you, as defined in the Apache-2.0 license, shall be\ndual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamuelmarks%2Fpremiere-pro-cmake-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamuelmarks%2Fpremiere-pro-cmake-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamuelmarks%2Fpremiere-pro-cmake-plugin/lists"}