Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/redthing1/wrenvm_tests
https://github.com/redthing1/wrenvm_tests
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/redthing1/wrenvm_tests
- Owner: redthing1
- Created: 2024-04-04T01:58:46.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-04T03:41:22.000Z (9 months ago)
- Last Synced: 2024-04-19T09:56:43.135Z (9 months ago)
- Language: C++
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wrenvm_tests
## how to build a project
install prerequisites:
+ c/c++ compiler
+ `meson`
+ `ninja`get submodules:
```sh
git submodule update --init --recursive
```build a demo, such as `./wrenscript`:
```sh
cd ./wrenscript
meson setup build
ninja -C build
./build/wrenscript_test
```## how to build repro for `foreigncall` issue:
install prerequisites:
+ c/c++ compiler
+ `meson`
+ `ninja`get submodules (wren is a submodule):
```sh
git submodule update --init --recursive
```build a demo, such as `./foreigncall`:
```sh
cd ./foreigncall
meson setup build
ninja -C build
./build/foreigncall_test
```