Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openvicproject/scripts
https://github.com/openvicproject/scripts
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/openvicproject/scripts
- Owner: OpenVicProject
- License: mit
- Created: 2023-09-22T22:09:47.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-07-10T19:14:30.000Z (6 months ago)
- Last Synced: 2024-07-10T23:02:48.370Z (6 months ago)
- Language: Python
- Size: 33.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenVicProject/scripts
Common Scons scripts repo for the [OpenVicProject repos](https://github.com/OpenVicProject)## Required
* [scons](https://scons.org/)## Usage
1. Call `env.SetupOptions()` and use the return value to add your options:
```py
opts = env.SetupOptions()
opts.Add(BoolVariable("example", "Is an example", false))
```
2. When options are finished call `env.FinalizeOptions()` then setup your scons script using env.