An open API service indexing awesome lists of open source software.

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 :)

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
```