no need for the sl directory

This commit is contained in:
speedie 2023-06-12 03:54:40 +02:00
parent e553da35a9
commit 6421126f67
5 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@
#include <math.h> #include <math.h>
#include "draw.h" #include "draw.h"
#include "../sl/main.h" #include "../main.h"
#ifndef X11 #ifndef X11
#define USEX 0 #define USEX 0

View file

@ -10,7 +10,7 @@ cc = meson.get_compiler('c')
project_source_files = [ project_source_files = [
'libs/draw/draw.c', 'libs/draw/draw.c',
'spmenu.c', 'spmenu.c',
'libs/sl/main.c', 'libs/main.c',
] ]
project_dependencies = [ project_dependencies = [

View file

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