v8-template
A minimal GN project template that have V8 engine as dependency, with a hello world example
DO NOT USE git clone
!
instead, use gclient
to get the code:
gclient config --unmanaged https://github.com/CGQAQ/v8-template.git
# or if you have ssh access
gclient config --unmanaged [email protected]:CGQAQ/v8-template.git
gclient sync
cd v8-template
gn gen out/v8
autoninja -C out/v8 helloworld
./out/v8/helloworld