forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Userspace: add support for adding environment variables during build (q…
- Loading branch information
1 parent
8c5b49c
commit 15aba76
Showing
17 changed files
with
372 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema#", | ||
"$id": "qmk.user_repo.v1_1", | ||
"title": "User Repository Information", | ||
"type": "object", | ||
"definitions": { | ||
"build_target": { | ||
"oneOf": [ | ||
{"$ref": "qmk.definitions.v1#/keyboard_keymap_tuple"}, | ||
{"$ref": "qmk.definitions.v1#/keyboard_keymap_env"}, | ||
{"$ref": "qmk.definitions.v1#/json_file_path"} | ||
] | ||
}, | ||
}, | ||
"required": [ | ||
"userspace_version", | ||
"build_targets" | ||
], | ||
"properties": { | ||
"userspace_version": { | ||
"type": "string", | ||
"enum": ["1.1"] | ||
}, | ||
"build_targets": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/build_target" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.