mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 01:58:41 +08:00
74 lines
1004 B
TOML
74 lines
1004 B
TOML
# Configuration for Redox development
|
|
|
|
include = ["desktop.toml"]
|
|
|
|
# General settings
|
|
[general]
|
|
# Filesystem size in MiB
|
|
filesystem_size = 20000
|
|
# Do not prompt if settings are not defined
|
|
prompt = false
|
|
|
|
# Package settings
|
|
[packages]
|
|
dev-essential = {}
|
|
redox-tests = {}
|
|
exampled = {}
|
|
gdbserver = {}
|
|
libgmp = {}
|
|
libiconv = {}
|
|
liborbital = {}
|
|
libsodium = {}
|
|
libxml2 = {}
|
|
llvm18 = {}
|
|
ncurses = {}
|
|
nghttp2 = {}
|
|
openssl1 = {}
|
|
orbclient = {}
|
|
pcre = {}
|
|
ripgrep = {}
|
|
terminfo = {}
|
|
xz = {}
|
|
zlib = {}
|
|
|
|
[[files]]
|
|
path = "/home/user/test.rs"
|
|
data = """
|
|
fn main() {
|
|
println!("Hello, Redox!");
|
|
}
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/home/user/test.c"
|
|
data = """
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
printf("Hello, Redox!\\n");
|
|
}
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/home/user/test.cpp"
|
|
data = """
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello, Redox!" << std::endl;
|
|
}
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/home/user/test.py"
|
|
data = """
|
|
print("Hello, Redox!")
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/home/user/test.lua"
|
|
data = """
|
|
print("Hello, Redox!")
|
|
"""
|