├── .gitignore ├── LICENSE ├── README.md ├── hello.cc ├── meson.build └── subprojects └── v8.wrap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleavr/hello-v8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleavr/hello-v8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleavr/hello-v8/HEAD/README.md -------------------------------------------------------------------------------- /hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleavr/hello-v8/HEAD/hello.cc -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleavr/hello-v8/HEAD/meson.build -------------------------------------------------------------------------------- /subprojects/v8.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleavr/hello-v8/HEAD/subprojects/v8.wrap --------------------------------------------------------------------------------