From 4acce6d32de8d1de2fe167664756da4591cceddd Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Fri, 29 Nov 2024 14:22:35 +0100 Subject: [PATCH] Move Color class from libscgui to libsccolor --- Makefile | 5 +---- progress.cpp | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 8feca79..5d78aae 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,4 @@ -LDLIBS := -lscterm -lm -lscgui - -LDLIBS += $(shell pkg-config sdl2 --libs) -CXXFLAGS += $(shell pkg-config sdl2 --cflags) +LDLIBS := -lscterm -lm -lsccolor BIN := $(shell basename $$(pwd)) diff --git a/progress.cpp b/progress.cpp index 0726ba6..0528ccc 100644 --- a/progress.cpp +++ b/progress.cpp @@ -2,7 +2,7 @@ #include #include #include -#include +#include void show_rows_cols(const sc::term& t) { std::cout << t.rows() << " rows, " << t.cols() << " cols\n";