https://github.com/polaris/eva-vm
A simple virtual machine for the Eva programming language.
https://github.com/polaris/eva-vm
cpp eva programming-languages virtual-machine
Last synced: 4 months ago
JSON representation
A simple virtual machine for the Eva programming language.
- Host: GitHub
- URL: https://github.com/polaris/eva-vm
- Owner: polaris
- Created: 2024-01-12T22:37:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-25T19:11:13.000Z (about 1 year ago)
- Last Synced: 2025-01-13T02:12:15.308Z (6 months ago)
- Topics: cpp, eva, programming-languages, virtual-machine
- Language: C++
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eva-vm
A simple virtual machine for the Eva programming language.
## Build instructions
### Conan - Detect profile
```
conan profile detect --force
```### Conan - Install requirements
```
conan install . --output-folder=build --build=missing
```### CMake - Configuration
```
cd build
cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release
```### CMake - Build
```
cmake --build .
```