A.Olokhtonov
3 years ago
5 changed files with 80 additions and 20 deletions
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
debug: |
||||
gcc main.c -g -O0 -o build/ttf -lX11 -lm -Wall -Wextra -Wno-unused-function -Wno-unused-variable -fsanitize=address |
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
version(1); |
||||
|
||||
project_name = "ttf-test"; |
||||
|
||||
patterns = { |
||||
"*.c", |
||||
"*.h", |
||||
"*.4coder", |
||||
"Makefile", |
||||
}; |
||||
|
||||
blacklist_patterns = { |
||||
".*", |
||||
"res", |
||||
"lib", |
||||
"build/*" |
||||
}; |
||||
|
||||
load_paths_base = { |
||||
{ ".", .relative = true, .recursive = true, } |
||||
}; |
||||
|
||||
load_paths = { |
||||
{ load_paths_base, .os = "linux", } |
||||
}; |
||||
|
||||
command_list = { |
||||
{ |
||||
.name = "build debug", |
||||
.out = "*compilation*", |
||||
.footer_panel = false, |
||||
.save_dirty_files = true, |
||||
.cursor_at_end = true, |
||||
.cmd = {{ "make debug", .os = "linux" }}, |
||||
}, |
||||
}; |
||||
|
||||
fkey_command[1] = "build debug"; |
Loading…
Reference in new issue