redox/config/dev.toml

106 lines
1.4 KiB
TOML
Raw Normal View History

# Configuration for development
2024-01-04 21:43:32 +01:00
include = ["desktop.toml"]
# General settings
[general]
# Filesystem size in MiB
filesystem_size = 20000
2024-01-04 21:43:32 +01:00
# Do not prompt if settings are not defined
prompt = false
# Package settings
[packages]
acid = {}
autoconf = {}
automake = {}
2024-01-04 21:43:32 +01:00
cargo = {}
crates-io-index = {}
exampled = {}
2024-01-04 21:43:32 +01:00
gcc13 = {}
gdbserver = {}
2024-01-04 21:43:32 +01:00
gnu-binutils = {}
gnu-grep = {}
2024-01-04 21:43:32 +01:00
gnu-make = {}
libffi = {}
libgmp = {}
libiconv = {}
libjpeg = {}
libogg = {}
liborbital = {}
libpng = {}
libsodium = {}
libvorbis = {}
libxml2 = {}
llvm18 = {}
lua54 = {}
mesa = {}
mesa-glu = {}
nasm = {}
ncurses = {}
nghttp2 = {}
openssl1 = {}
orbclient = {}
patch = {}
pcre = {}
pkg-config = {}
resist = {}
ripgrep = {}
2024-01-04 21:43:32 +01:00
rust = {}
sdl-gfx = {}
sdl1 = {}
sdl1-image = {}
sdl1-mixer = {}
sdl1-ttf = {}
sdl2 = {}
sdl2-gears = {}
sdl2-image = {}
sdl2-mixer = {}
sdl2-ttf = {}
sed = {}
strace = {}
terminfo = {}
xz = {}
zlib = {}
2024-01-04 21:43:32 +01:00
[[files]]
path = "/home/user/test.rs"
2024-01-04 21:43:32 +01:00
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!")
"""