From ac164afa0954e28b521dc6b19d2ccf0320cc8ed1 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Tue, 8 Apr 2014 05:17:27 +0200 Subject: utils/colors: move colors into subdir, add hsv All color classes are now in an own subdirectory with a short name. The new class HsvColor represents the Hue/Saturation/Value color model and comes with conversion functions to and from rgb colors (currently integer arithmetic without optimization for higher presicion). --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/Makefile') diff --git a/test/Makefile b/test/Makefile index cfb63f06..57b9df50 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,8 +1,8 @@ TARGET:=usdx-tests include ../Makefile.inc -headers+=$(wildcard *.hpp) $(wildcard */*.hpp) -sources+=$(wildcard *.cpp) $(wildcard */*.cpp) +headers+=$(wildcard *.hpp) $(wildcard */*.hpp) $(wildcard */*/*.hpp) +sources+=$(wildcard *.cpp) $(wildcard */*.cpp) $(wildcard */*/*.cpp) LDFLAGS+=-lcppunit CXXFLAGS-COVERAGE:=-fprofile-arcs -ftest-coverage -- cgit v1.2.3