Move Liberation to tlib

This commit is contained in:
Baptiste Wicht 2016-08-17 22:32:54 +02:00
parent b2730f20b6
commit 3a7989fb2e
5 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ size_t red_shift;
size_t blue_shift;
size_t green_shift;
#include "Liberation.c"
#include <tlib/Liberation.inl>
} //end of anonymous namespace

View File

@ -1 +0,0 @@
../../../kernel/src/Liberation.c

View File

@ -23,7 +23,7 @@ uint64_t red_shift = 0;
uint64_t green_shift = 0;
uint64_t blue_shift = 0;
#include "Liberation.c"
#include <tlib/Liberation.inl>
uint32_t make_color(uint8_t r, uint8_t g, uint8_t b){
return (r << red_shift) + (g << green_shift) + (b << blue_shift);

View File

@ -2,6 +2,7 @@ sonar.projectKey=thor
sonar.projectName=thor
sonar.projectVersion=1.2.3
sonar.cxx.suffixes.headers=.hpp,.inl
sonar.sources=programs,tlib,tstl,kernel/include,kernel/src,init
sonar.language=c++