Rename libdrw to draw, because it's not really libdrw anymore

This commit is contained in:
speedie 2023-06-12 02:28:19 +02:00
parent ce30909e70
commit 43e2800e9f
4 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
#include <pango/pangocairo.h> #include <pango/pangocairo.h>
#include <math.h> #include <math.h>
#include "drw.h" #include "draw.h"
#include "../sl/main.h" #include "../sl/main.h"
#ifndef X11 #ifndef X11

View file

@ -8,7 +8,7 @@ project(
cc = meson.get_compiler('c') cc = meson.get_compiler('c')
project_source_files = [ project_source_files = [
'libs/libdrw/drw.c', 'libs/draw/draw.c',
'spmenu.c', 'spmenu.c',
'libs/sl/main.c', 'libs/sl/main.c',
] ]

View file

@ -89,7 +89,7 @@ static int curMode; // 0 is command mode
static int allowkeys; // whether or not to interpret a keypress as an insertion static int allowkeys; // whether or not to interpret a keypress as an insertion
// various headers // various headers
#include "libs/libdrw/drw.h" #include "libs/draw/draw.h"
#include "libs/sl/main.h" #include "libs/sl/main.h"
#include "libs/draw.h" #include "libs/draw.h"
#include "libs/stream.h" #include "libs/stream.h"