https://github.com/cgqaq/v8-template
A minimal GN project template that have V8 engine as dependency, with a hello world example, and if you use vscode, you will have full code completion as well :)
https://github.com/cgqaq/v8-template
gn gnproject template-project v8
Last synced: about 1 year ago
JSON representation
A minimal GN project template that have V8 engine as dependency, with a hello world example, and if you use vscode, you will have full code completion as well :)
- Host: GitHub
- URL: https://github.com/cgqaq/v8-template
- Owner: CGQAQ
- Created: 2024-11-01T08:19:06.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-06T06:58:54.000Z (over 1 year ago)
- Last Synced: 2025-04-17T10:26:40.053Z (about 1 year ago)
- Topics: gn, gnproject, template-project, v8
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## What's this?
`v8-template` A minimal GN project template that have V8 engine as dependency, with a hello world example
## HOW TO
### Get the code
***DO NOT USE `git clone`!***
instead, use `gclient` to get the code:
```bash
gclient config --unmanaged https://github.com/CGQAQ/v8-template.git
# or if you have ssh access
gclient config --unmanaged git@github.com:CGQAQ/v8-template.git
gclient sync
cd v8-template
gn gen out/v8
autoninja -C out/v8 helloworld
./out/v8/helloworld
```