{"id":16192211,"url":"https://github.com/cretz/qt_cef_poc","last_synced_at":"2025-07-24T05:36:48.029Z","repository":{"id":64307110,"uuid":"95496781","full_name":"cretz/qt_cef_poc","owner":"cretz","description":"Proof of concept of simple browser w/ CEF and Qt","archived":false,"fork":false,"pushed_at":"2018-06-12T15:26:28.000Z","size":21,"stargazers_count":28,"open_issues_count":3,"forks_count":6,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-17T03:21:42.524Z","etag":null,"topics":["cef","qt"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cretz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-06-26T23:04:15.000Z","updated_at":"2024-02-09T09:48:16.000Z","dependencies_parsed_at":"2023-01-15T11:00:30.946Z","dependency_job_id":null,"html_url":"https://github.com/cretz/qt_cef_poc","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cretz/qt_cef_poc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cretz%2Fqt_cef_poc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cretz%2Fqt_cef_poc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cretz%2Fqt_cef_poc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cretz%2Fqt_cef_poc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cretz","download_url":"https://codeload.github.com/cretz/qt_cef_poc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cretz%2Fqt_cef_poc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266796900,"owners_count":23985493,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cef","qt"],"created_at":"2024-10-10T08:09:18.699Z","updated_at":"2025-07-24T05:36:47.992Z","avatar_url":"https://github.com/cretz.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# qt_cef_poc\n\nProof of concept of a very simplistic cross-platform Qt browser using Chromium Embedded Framework.\n\n## Building\n\n### Windows Prerequisites\n\nBefore running the build script on Windows, you must have the prerequisites:\n\n* Latest Qt (5.x) installed w/ `qmake.exe` on the `PATH`\n* Latest CMake installed w/ `cmake.exe` on the `PATH`\n* Latest Python (2.x) installed w/ `python.exe` on the `PATH`\n* Latest Go installed w/ `go.exe` on the `PATH`\n* [MSVC 2015 Build Tools](http://landinghub.visualstudio.com/visual-cpp-build-tools) installed w/ the following\n  executed to put 64-bit VC compiler on the `PATH`:\n  `\"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" amd64`\n* Latest [Windows 64-bit standard dist of CEF](http://opensource.spotify.com/cefbuilds/index.html#windows64_builds)\n  extracted w/ `CEF_DIR` environment variable set to the base CEF extracted dir\n* This repo cloned w/ the shell at the repo root\n\n### Linux Prerequisites\n\nBefore running the build script on Windows, you must have the prerequisites:\n\n* Latest Qt (5.x) installed w/ `qmake` on the `PATH`\n* Latest CMake installed w/ `cmake` on the `PATH`\n* Latest Python (2.x) installed w/ `python` on the `PATH`\n* Latest Go installed w/ `go` on the `PATH`\n* Latest GCC installed w/ `gcc` and `g++` on the `PATH`\n* Latest Make installed w/ `make` on the `PATH`\n* Latest [Linux 64-bit standard dist of CEF](http://opensource.spotify.com/cefbuilds/index.html#linux64_builds)\n  extracted w/ `CEF_DIR` environment variable set to the base CEF extracted dir\n* Latest GTK 2.x installed and on the library path\n* This repo cloned w/ the shell at the repo root\n\n### MacOS Prerequisites\n\n(TODO)\n\n### Running Build\n\nThe application uses the CEF C++ wrapper, which can be built via:\n\n    go run build.go build-cef\n\nNow the application can easily be run via:\n\n    go run build.go run\n\nThat will run the `debug` version. For the `release` version, run:\n\n    go run build.go run release\n\nInternally, that just builds and runs the exe. To just build, call `build` instead. To package a deployment artifact\nfrom a previously run build, `package` is used. For example, to package a `release` deployment artifact from a\npreviously run `release` build, run:\n\n    go run build.go package release\n\nOnce complete, the package(s) will in `release/package` (e.g. qt_cef_poc.zip in Windows)\n\n## TODO\n\n* Fix focus issues between browser and URL bar on all platforms\n* Move everything but the exe to a sub folder for cleaner deployment\n  * For CEF, see [this](http://www.magpcss.org/ceforum/viewtopic.php?f=6\u0026t=10296) post\n  * May need to manually `LoadLibrary` and/or use\n    [`SetDllDirectory`](https://msdn.microsoft.com/en-us/library/windows/desktop/ms686203(v=vs.85).aspx)\n  * Consider instead cross platform shortcuts at the top level instead\n  * Chrome does this, see their deployment dir and then look at their code on how they do it","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcretz%2Fqt_cef_poc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcretz%2Fqt_cef_poc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcretz%2Fqt_cef_poc/lists"}