Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rob2d/build-and-watch
Gameboy ROM development workflow to avoid build processes and makefiles. Watches a folder for changes to .c or .h files, builds your Gameboy ROM .gb file using GBDK, and then conveniently launches/re-launches an emulator of your choice when ROM is edited.
https://github.com/rob2d/build-and-watch
build-system build-tool c game-boy game-boy-development game-boy-rom gameboy gameboy-rom gbdk lcc nodejs
Last synced: 1 day ago
JSON representation
Gameboy ROM development workflow to avoid build processes and makefiles. Watches a folder for changes to .c or .h files, builds your Gameboy ROM .gb file using GBDK, and then conveniently launches/re-launches an emulator of your choice when ROM is edited.
- Host: GitHub
- URL: https://github.com/rob2d/build-and-watch
- Owner: rob2d
- License: mit
- Created: 2017-12-06T03:49:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-29T15:17:52.000Z (over 5 years ago)
- Last Synced: 2025-01-13T19:48:18.948Z (13 days ago)
- Topics: build-system, build-tool, c, game-boy, game-boy-development, game-boy-rom, gameboy, gameboy-rom, gbdk, lcc, nodejs
- Language: JavaScript
- Homepage:
- Size: 47.9 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Build & Watch #
Build & Watch is a Gameboy ROM development workflow tool which watches a folder for changes to .c or .h files, builds your Gameboy ROM `.gb` file using GBDK, and then conveniently launches an emulator of your choice with the updated ROM while closing older instances each time you make an edit.
## Getting Started ##
These tools are created with NodeJS. To begin usage, make sure you have installed:
- NodeJS 6.X +
- NPM3 +
- [GBDK](http://gbdk.sourceforge.net/)Once you have these requirements, be sure to:
1) configure your PATH variables to include the `/bin` folder of your GBDK.
2) Open your terminal
3) Go to the directory where you intend to build your source code to a ROM and type
```
npm install -g build-and-watch
```## Usage ##
Be sure to configure the relevant parameters in `config.json`, go to your cloned repo directory, and then simply run:
```
buildandwatch --config="myconfigfile.json"
```## Contributing ##
PR requests welcome. Please be reasonable with issue reports, and use stack exchange if it is simple for a technical question vs an actual issue. This repo has been created and tested exclusively on Windows 10 so far, so I'm hoping to get some feedback from people on other OS/distros.
## Note ##
This is a work in progress. As such, there are likely to be things that can be improved, and this repo is in a phase of active development. Your support is greatly appreciated throughout this process.
Thanks!