-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some configuration options (not implemented)
- Loading branch information
karurochari
committed
Dec 5, 2024
1 parent
9d64083
commit 95d750b
Showing
3 changed files
with
28 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
option('tests', type: 'boolean', value: true) | ||
option('tests', type: 'boolean', value: true) | ||
|
||
option('use_curl', type: 'boolean', value: true) | ||
|
||
option('use_tcc', type: 'boolean', value: true) | ||
option('use_quickjs', type: 'boolean', value: true) | ||
option('use_wamr', type: 'boolean', value: true) | ||
|
||
# Only one between lua and luajit should be enabled | ||
option('use_lua', type: 'boolean', value: true) | ||
option('use_luajit', type: 'boolean', value: true) | ||
|
||
# If present, else build it manually | ||
option('use_system_fltk', type: 'boolean', value: true) |