diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-08-05 04:24:59 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-08-05 04:24:59 +0200 |
commit | f0bcf73ba3d51513e20423fe2f72d93c73efc19a (patch) | |
tree | 29d2d715c4ef57979c1d44d9e8716f8929c6b698 /gpu-screen-recorder-overlay-daemon | |
parent | 2aa81b741c0097652de0b988ed4d5e071b14501c (diff) |
Add meson build
Diffstat (limited to 'gpu-screen-recorder-overlay-daemon')
-rw-r--r-- | gpu-screen-recorder-overlay-daemon/main.c | 5 | ||||
-rw-r--r-- | gpu-screen-recorder-overlay-daemon/project.conf | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gpu-screen-recorder-overlay-daemon/main.c b/gpu-screen-recorder-overlay-daemon/main.c index ff510c0..53ca5ec 100644 --- a/gpu-screen-recorder-overlay-daemon/main.c +++ b/gpu-screen-recorder-overlay-daemon/main.c @@ -101,10 +101,7 @@ int main(void) { if(overlay_pid == -1) { fprintf(stderr, "launch overlay\n"); // TODO: window_with_input_focus - const char *args[] = { - "/home/dec05eba/git/gpu-screen-recorder-overlay/sibs-build/linux_x86_64/debug/gpu-screen-recorder-overlay", - NULL - }; + const char *args[] = { "gsr-overlay", NULL }; exec_program(args, &overlay_pid); } } diff --git a/gpu-screen-recorder-overlay-daemon/project.conf b/gpu-screen-recorder-overlay-daemon/project.conf index 456b41b..758d50c 100644 --- a/gpu-screen-recorder-overlay-daemon/project.conf +++ b/gpu-screen-recorder-overlay-daemon/project.conf @@ -4,5 +4,8 @@ type = "executable" version = "0.1.0" platforms = ["posix"] +[config] +ignore_dirs = ["build"] + [dependencies] x11 = ">=1" |