1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 20:45:09 +00:00

Lagom: Add LibGemini, LibGfx

They are dependencies of LibWeb and might be useful for
running test-web on GitHub actions one day.
This commit is contained in:
Nico Weber 2020-07-23 14:34:53 -04:00 committed by Andreas Kling
parent c4d9d5cc54
commit 3f45e9ab1e
8 changed files with 179 additions and 22 deletions

View file

@ -24,53 +24,137 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#ifdef __serenity__ #if defined(__serenity__) || defined(__linux__)
# include <AK/SharedBuffer.h> # include <AK/SharedBuffer.h>
# include <AK/kmalloc.h> # include <AK/kmalloc.h>
# include <Kernel/API/Syscall.h> # include <Kernel/API/Syscall.h>
# include <stdio.h> # include <stdio.h>
# if defined(__serenity__)
# include <serenity.h> # include <serenity.h>
# elif defined(__linux__)
# include <AK/String.h>
# include <fcntl.h>
# include <sys/mman.h>
static String shbuf_shm_name(int shbuf_id)
{
return String::format("/serenity-shm:%d", shbuf_id);
}
# endif
namespace AK { namespace AK {
RefPtr<SharedBuffer> SharedBuffer::create_with_size(int size) RefPtr<SharedBuffer> SharedBuffer::create_with_size(int size)
{ {
# if defined(__serenity__)
void* data; void* data;
int shbuf_id = shbuf_create(size, &data); int shbuf_id = shbuf_create(size, &data);
if (shbuf_id < 0) { if (shbuf_id < 0) {
perror("shbuf_create"); perror("shbuf_create");
return nullptr; return nullptr;
} }
# elif defined(__linux__)
// Not atomic, so don't create shared buffers from many threads too hard under lagom.
static unsigned g_shm_id = 0;
int shbuf_id = (getpid() << 8) | (g_shm_id++);
int fd = shm_open(shbuf_shm_name(shbuf_id).characters(), O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
if (fd < 0) {
perror("shm_open");
return nullptr;
}
if (ftruncate(fd, size) < 0) {
perror("ftruncate");
return nullptr;
}
void* data = mmap(nullptr, size + sizeof(size_t), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (data == MAP_FAILED) {
perror("mmap");
return nullptr;
}
size_t* size_data = reinterpret_cast<size_t*>(data);
*size_data = size;
data = reinterpret_cast<u8*>(data) + sizeof(size_t);
if (close(fd) < 0) {
perror("close");
return nullptr;
}
# endif
return adopt(*new SharedBuffer(shbuf_id, size, data)); return adopt(*new SharedBuffer(shbuf_id, size, data));
} }
bool SharedBuffer::share_with(pid_t peer) bool SharedBuffer::share_with(pid_t peer)
{ {
# if defined(__serenity__)
int ret = shbuf_allow_pid(shbuf_id(), peer); int ret = shbuf_allow_pid(shbuf_id(), peer);
if (ret < 0) { if (ret < 0) {
perror("shbuf_allow_pid"); perror("shbuf_allow_pid");
return false; return false;
} }
# else
(void)peer;
# endif
return true; return true;
} }
bool SharedBuffer::share_globally() bool SharedBuffer::share_globally()
{ {
# if defined(__serenity__)
int ret = shbuf_allow_all(shbuf_id()); int ret = shbuf_allow_all(shbuf_id());
if (ret < 0) { if (ret < 0) {
perror("shbuf_allow_all"); perror("shbuf_allow_all");
return false; return false;
} }
# endif
return true; return true;
} }
RefPtr<SharedBuffer> SharedBuffer::create_from_shbuf_id(int shbuf_id) RefPtr<SharedBuffer> SharedBuffer::create_from_shbuf_id(int shbuf_id)
{ {
# if defined(__serenity__)
size_t size = 0; size_t size = 0;
void* data = shbuf_get(shbuf_id, &size); void* data = shbuf_get(shbuf_id, &size);
if (data == (void*)-1) if (data == (void*)-1)
return nullptr; return nullptr;
# elif defined(__linux__)
int fd = shm_open(shbuf_shm_name(shbuf_id).characters(), O_RDWR, S_IRUSR | S_IWUSR);
if (fd < 0) {
perror("shm_open");
return nullptr;
}
void* data = mmap(nullptr, sizeof(size_t), PROT_READ, MAP_SHARED, fd, 0);
if (data == MAP_FAILED) {
perror("mmap");
return nullptr;
}
size_t* size_data = reinterpret_cast<size_t*>(data);
size_t size = *size_data;
if (munmap(data, sizeof(size_t)) < 0) {
perror("munmap");
return nullptr;
}
data = mmap(nullptr, size + sizeof(size_t), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (data == MAP_FAILED) {
perror("mmap");
return nullptr;
}
data = reinterpret_cast<u8*>(data) + sizeof(size_t);
if (close(fd) < 0) {
perror("close");
return nullptr;
}
# endif
return adopt(*new SharedBuffer(shbuf_id, size, data)); return adopt(*new SharedBuffer(shbuf_id, size, data));
} }
@ -84,36 +168,48 @@ SharedBuffer::SharedBuffer(int shbuf_id, int size, void* data)
SharedBuffer::~SharedBuffer() SharedBuffer::~SharedBuffer()
{ {
if (m_shbuf_id >= 0) { if (m_shbuf_id >= 0) {
# if defined(__serenity__)
int rc = shbuf_release(m_shbuf_id); int rc = shbuf_release(m_shbuf_id);
if (rc < 0) { if (rc < 0) {
perror("shbuf_release"); perror("shbuf_release");
} }
# elif defined(__linux__)
if (munmap(reinterpret_cast<u8*>(m_data) - sizeof(size_t), m_size + sizeof(size_t)) < 0)
perror("munmap");
if (shm_unlink(shbuf_shm_name(m_shbuf_id).characters()) < 0)
perror("unlink");
# endif
} }
} }
void SharedBuffer::seal() void SharedBuffer::seal()
{ {
# if defined(__serenity__)
int rc = shbuf_seal(m_shbuf_id); int rc = shbuf_seal(m_shbuf_id);
if (rc < 0) { if (rc < 0) {
perror("shbuf_seal"); perror("shbuf_seal");
ASSERT_NOT_REACHED(); ASSERT_NOT_REACHED();
} }
# endif
} }
void SharedBuffer::set_volatile() void SharedBuffer::set_volatile()
{ {
# if defined(__serenity__)
u32 rc = syscall(SC_shbuf_set_volatile, m_shbuf_id, true); u32 rc = syscall(SC_shbuf_set_volatile, m_shbuf_id, true);
ASSERT(rc == 0); ASSERT(rc == 0);
# endif
} }
bool SharedBuffer::set_nonvolatile() bool SharedBuffer::set_nonvolatile()
{ {
# if defined(__serenity__)
u32 rc = syscall(SC_shbuf_set_volatile, m_shbuf_id, false); u32 rc = syscall(SC_shbuf_set_volatile, m_shbuf_id, false);
if (rc == 0) if (rc == 0)
return true; return true;
if (rc == 1) ASSERT(rc == 1);
# endif
return false; return false;
ASSERT_NOT_REACHED();
} }
} }

View file

@ -26,7 +26,7 @@
#pragma once #pragma once
#ifdef __serenity__ #if defined(__serenity__) || defined(__linux__)
# include <AK/RefCounted.h> # include <AK/RefCounted.h>
# include <AK/RefPtr.h> # include <AK/RefPtr.h>
@ -54,7 +54,7 @@ private:
int m_shbuf_id { -1 }; int m_shbuf_id { -1 };
int m_size { 0 }; int m_size { 0 };
void* m_data; void* m_data { nullptr };
}; };
} }

View file

@ -74,8 +74,13 @@ Bitmap::Bitmap(BitmapFormat format, const IntSize& size, Purgeable purgeable)
ASSERT(!m_size.is_empty()); ASSERT(!m_size.is_empty());
ASSERT(!size_would_overflow(format, size)); ASSERT(!size_would_overflow(format, size));
allocate_palette_from_format(format, {}); allocate_palette_from_format(format, {});
#ifdef __serenity__
int map_flags = purgeable == Purgeable::Yes ? (MAP_PURGEABLE | MAP_PRIVATE) : (MAP_ANONYMOUS | MAP_PRIVATE); int map_flags = purgeable == Purgeable::Yes ? (MAP_PURGEABLE | MAP_PRIVATE) : (MAP_ANONYMOUS | MAP_PRIVATE);
m_data = (RGBA32*)mmap_with_name(nullptr, size_in_bytes(), PROT_READ | PROT_WRITE, map_flags, 0, 0, String::format("GraphicsBitmap [%dx%d]", width(), height()).characters()); m_data = (RGBA32*)mmap_with_name(nullptr, size_in_bytes(), PROT_READ | PROT_WRITE, map_flags, 0, 0, String::format("GraphicsBitmap [%dx%d]", width(), height()).characters());
#else
int map_flags = (MAP_ANONYMOUS | MAP_PRIVATE);
m_data = (RGBA32*)mmap(nullptr, size_in_bytes(), PROT_READ | PROT_WRITE, map_flags, 0, 0);
#endif
ASSERT(m_data && m_data != (void*)-1); ASSERT(m_data && m_data != (void*)-1);
m_needs_munmap = true; m_needs_munmap = true;
} }
@ -207,7 +212,11 @@ Bitmap::~Bitmap()
void Bitmap::set_mmap_name(const StringView& name) void Bitmap::set_mmap_name(const StringView& name)
{ {
ASSERT(m_needs_munmap); ASSERT(m_needs_munmap);
#ifdef __serenity__
::set_mmap_name(m_data, size_in_bytes(), name.to_string().characters()); ::set_mmap_name(m_data, size_in_bytes(), name.to_string().characters());
#else
(void)name;
#endif
} }
void Bitmap::fill(Color color) void Bitmap::fill(Color color)
@ -224,11 +233,13 @@ void Bitmap::set_volatile()
ASSERT(m_purgeable); ASSERT(m_purgeable);
if (m_volatile) if (m_volatile)
return; return;
#ifdef __serenity__
int rc = madvise(m_data, size_in_bytes(), MADV_SET_VOLATILE); int rc = madvise(m_data, size_in_bytes(), MADV_SET_VOLATILE);
if (rc < 0) { if (rc < 0) {
perror("madvise(MADV_SET_VOLATILE)"); perror("madvise(MADV_SET_VOLATILE)");
ASSERT_NOT_REACHED(); ASSERT_NOT_REACHED();
} }
#endif
m_volatile = true; m_volatile = true;
} }
@ -237,11 +248,15 @@ void Bitmap::set_volatile()
ASSERT(m_purgeable); ASSERT(m_purgeable);
if (!m_volatile) if (!m_volatile)
return true; return true;
#ifdef __serenity__
int rc = madvise(m_data, size_in_bytes(), MADV_SET_NONVOLATILE); int rc = madvise(m_data, size_in_bytes(), MADV_SET_NONVOLATILE);
if (rc < 0) { if (rc < 0) {
perror("madvise(MADV_SET_NONVOLATILE)"); perror("madvise(MADV_SET_NONVOLATILE)");
ASSERT_NOT_REACHED(); ASSERT_NOT_REACHED();
} }
#else
int rc = 0;
#endif
m_volatile = false; m_volatile = false;
return rc == 0; return rc == 0;
} }

View file

@ -213,7 +213,15 @@ RefPtr<Font> Font::load_from_file(const StringView& path)
bool Font::write_to_file(const StringView& path) bool Font::write_to_file(const StringView& path)
{ {
int fd = creat_with_path_length(path.characters_without_null_termination(), path.length(), 0644); int fd;
#ifdef __serenity__
fd = creat_with_path_length(path.characters_without_null_termination(), path.length(), 0644);
#else
{
String null_terminated_path = path;
fd = creat(null_terminated_path.characters(), 0644);
}
#endif
if (fd < 0) { if (fd < 0) {
perror("open"); perror("open");
return false; return false;

View file

@ -432,7 +432,7 @@ bool load_gif_frame_descriptors(GIFLoadingContext& context)
if (sub_block_length == 0) if (sub_block_length == 0)
break; break;
u8 dummy; u8 dummy = 0;
for (u16 i = 0; i < sub_block_length; ++i) { for (u16 i = 0; i < sub_block_length; ++i) {
stream >> dummy; stream >> dummy;
sub_block.append(dummy); sub_block.append(dummy);

View file

@ -466,7 +466,7 @@ static inline bool is_valid_marker(const Marker marker)
static inline u16 read_be_word(BufferStream& stream) static inline u16 read_be_word(BufferStream& stream)
{ {
u8 tmp1, tmp2; u8 tmp1 = 0, tmp2 = 0;
stream >> tmp1 >> tmp2; stream >> tmp1 >> tmp2;
return ((u16)tmp1 << 8) | ((u16)tmp2); return ((u16)tmp1 << 8) | ((u16)tmp2);
} }
@ -505,6 +505,8 @@ static bool read_start_of_scan(BufferStream& stream, JPGLoadingContext& context)
return false; return false;
u8 component_count; u8 component_count;
stream >> component_count; stream >> component_count;
if (stream.handle_read_failure())
return false;
if (component_count != context.component_count) { if (component_count != context.component_count) {
dbg() << stream.offset() dbg() << stream.offset()
<< String::format(": Unsupported number of components: %i!", component_count); << String::format(": Unsupported number of components: %i!", component_count);
@ -515,6 +517,8 @@ static bool read_start_of_scan(BufferStream& stream, JPGLoadingContext& context)
ComponentSpec* component = nullptr; ComponentSpec* component = nullptr;
u8 component_id; u8 component_id;
stream >> component_id; stream >> component_id;
if (stream.handle_read_failure())
return false;
component_id += context.has_zero_based_ids ? 1 : 0; component_id += context.has_zero_based_ids ? 1 : 0;
if (component_id == context.components[0].id) if (component_id == context.components[0].id)
@ -530,16 +534,24 @@ static bool read_start_of_scan(BufferStream& stream, JPGLoadingContext& context)
u8 table_ids; u8 table_ids;
stream >> table_ids; stream >> table_ids;
if (stream.handle_read_failure())
return false;
component->dc_destination_id = table_ids >> 4; component->dc_destination_id = table_ids >> 4;
component->ac_destination_id = table_ids & 0x0F; component->ac_destination_id = table_ids & 0x0F;
} }
u8 spectral_selection_start; u8 spectral_selection_start;
stream >> spectral_selection_start; stream >> spectral_selection_start;
if (stream.handle_read_failure())
return false;
u8 spectral_selection_end; u8 spectral_selection_end;
stream >> spectral_selection_end; stream >> spectral_selection_end;
if (stream.handle_read_failure())
return false;
u8 successive_approximation; u8 successive_approximation;
stream >> successive_approximation; stream >> successive_approximation;
if (stream.handle_read_failure())
return false;
// The three values should be fixed for baseline JPEGs utilizing sequential DCT. // The three values should be fixed for baseline JPEGs utilizing sequential DCT.
if (spectral_selection_start != 0 || spectral_selection_end != 63 || successive_approximation != 0) { if (spectral_selection_start != 0 || spectral_selection_end != 63 || successive_approximation != 0) {
dbg() << stream.offset() << ": ERROR! Start of Selection: " << spectral_selection_start dbg() << stream.offset() << ": ERROR! Start of Selection: " << spectral_selection_start
@ -574,6 +586,8 @@ static bool read_huffman_table(BufferStream& stream, JPGLoadingContext& context)
HuffmanTableSpec table; HuffmanTableSpec table;
u8 table_info; u8 table_info;
stream >> table_info; stream >> table_info;
if (stream.handle_read_failure())
return false;
u8 table_type = table_info >> 4; u8 table_type = table_info >> 4;
u8 table_destination_id = table_info & 0x0F; u8 table_destination_id = table_info & 0x0F;
if (table_type > 1) { if (table_type > 1) {
@ -593,6 +607,8 @@ static bool read_huffman_table(BufferStream& stream, JPGLoadingContext& context)
for (int i = 0; i < 16; i++) { for (int i = 0; i < 16; i++) {
u8 count; u8 count;
stream >> count; stream >> count;
if (stream.handle_read_failure())
return false;
total_codes += count; total_codes += count;
table.code_counts[i] = count; table.code_counts[i] = count;
} }
@ -601,11 +617,14 @@ static bool read_huffman_table(BufferStream& stream, JPGLoadingContext& context)
// Read symbols. Read X bytes, where X is the sum of the counts of codes read in the previous step. // Read symbols. Read X bytes, where X is the sum of the counts of codes read in the previous step.
for (u32 i = 0; i < total_codes; i++) { for (u32 i = 0; i < total_codes; i++) {
u8 symbol; u8 symbol = 0;
stream >> symbol; stream >> symbol;
table.symbols.append(symbol); table.symbols.append(symbol);
} }
if (stream.handle_read_failure())
return false;
if (table_type == 0) if (table_type == 0)
context.dc_tables.append(move(table)); context.dc_tables.append(move(table));
else else
@ -690,8 +709,10 @@ static bool read_start_of_frame(BufferStream& stream, JPGLoadingContext& context
context.has_zero_based_ids = component.id == 0; context.has_zero_based_ids = component.id == 0;
component.id += context.has_zero_based_ids ? 1 : 0; component.id += context.has_zero_based_ids ? 1 : 0;
u8 subsample_factors; u8 subsample_factors = 0;
stream >> subsample_factors; stream >> subsample_factors;
if (stream.handle_read_failure())
return false;
component.hsample_factor = subsample_factors >> 4; component.hsample_factor = subsample_factors >> 4;
component.vsample_factor = subsample_factors & 0x0F; component.vsample_factor = subsample_factors & 0x0F;
@ -732,6 +753,8 @@ static bool read_quantization_table(BufferStream& stream, JPGLoadingContext& con
while (bytes_to_read > 0) { while (bytes_to_read > 0) {
u8 info_byte; u8 info_byte;
stream >> info_byte; stream >> info_byte;
if (stream.handle_read_failure())
return false;
u8 element_unit_hint = info_byte >> 4; u8 element_unit_hint = info_byte >> 4;
if (element_unit_hint > 1) { if (element_unit_hint > 1) {
dbg() << stream.offset() dbg() << stream.offset()
@ -746,12 +769,15 @@ static bool read_quantization_table(BufferStream& stream, JPGLoadingContext& con
u32* table = table_id == 0 ? context.luma_table : context.chroma_table; u32* table = table_id == 0 ? context.luma_table : context.chroma_table;
for (int i = 0; i < 64; i++) { for (int i = 0; i < 64; i++) {
if (element_unit_hint == 0) { if (element_unit_hint == 0) {
u8 tmp; u8 tmp = 0;
stream >> tmp; stream >> tmp;
table[zigzag_map[i]] = tmp; table[zigzag_map[i]] = tmp;
} else } else
table[zigzag_map[i]] = read_be_word(stream); table[zigzag_map[i]] = read_be_word(stream);
} }
if (stream.handle_read_failure())
return false;
bytes_to_read -= 1 + (element_unit_hint == 0 ? 64 : 128); bytes_to_read -= 1 + (element_unit_hint == 0 ? 64 : 128);
} }
if (bytes_to_read != 0) { if (bytes_to_read != 0) {
@ -1081,6 +1107,8 @@ static bool scan_huffman_stream(BufferStream& stream, JPGLoadingContext& context
u8 last_byte; u8 last_byte;
u8 current_byte; u8 current_byte;
stream >> current_byte; stream >> current_byte;
if (stream.handle_read_failure())
return false;
for (;;) { for (;;) {
last_byte = current_byte; last_byte = current_byte;

View file

@ -32,13 +32,16 @@
#include <LibGfx/PNGLoader.h> #include <LibGfx/PNGLoader.h>
#include <LibM/math.h> #include <LibM/math.h>
#include <fcntl.h> #include <fcntl.h>
#include <serenity.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
#ifdef __serenity__
# include <serenity.h>
#endif
//#define PNG_DEBUG //#define PNG_DEBUG
namespace Gfx { namespace Gfx {
@ -747,7 +750,11 @@ static bool decode_png_bitmap(PNGLoadingContext& context)
return false; return false;
} }
context.decompression_buffer_size = destlen; context.decompression_buffer_size = destlen;
#ifdef __serenity__
context.decompression_buffer = (u8*)mmap_with_name(nullptr, context.decompression_buffer_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0, "PNG decompression buffer"); context.decompression_buffer = (u8*)mmap_with_name(nullptr, context.decompression_buffer_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0, "PNG decompression buffer");
#else
context.decompression_buffer = (u8*)mmap(nullptr, context.decompression_buffer_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0);
#endif
ret = puff(context.decompression_buffer, &destlen, context.compressed_data.data() + 2, &srclen); ret = puff(context.decompression_buffer, &destlen, context.compressed_data.data() + 2, &srclen);
if (ret != 0) { if (ret != 0) {

View file

@ -39,9 +39,12 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
endif() endif()
file(GLOB AK_SOURCES "../../AK/*.cpp") file(GLOB AK_SOURCES "../../AK/*.cpp")
file(GLOB LIBCORE_SOURCES "../../Libraries/LibCore/*.cpp") file(GLOB LIBCORE_SOURCES "../../Libraries/LibCore/*.c*")
file(GLOB LIBGEMINI_SOURCES "../../Libraries/LibGemini/*.cpp")
file(GLOB LIBGFX_SOURCES "../../Libraries/LibGfx/*.cpp")
file(GLOB LIBIPC_SOURCES "../../Libraries/LibIPC/*.cpp") file(GLOB LIBIPC_SOURCES "../../Libraries/LibIPC/*.cpp")
file(GLOB LIBLINE_SOURCES "../../Libraries/LibLine/*.cpp") file(GLOB LIBLINE_SOURCES "../../Libraries/LibLine/*.cpp")
set(LIBM_SOURCES "../../Libraries/LibM/math.cpp")
file(GLOB LIBMARKDOWN_SOURCES "../../Libraries/LibMarkdown/*.cpp") file(GLOB LIBMARKDOWN_SOURCES "../../Libraries/LibMarkdown/*.cpp")
file(GLOB LIBX86_SOURCES "../../Libraries/LibX86/*.cpp") file(GLOB LIBX86_SOURCES "../../Libraries/LibX86/*.cpp")
file(GLOB LIBJS_SOURCES "../../Libraries/LibJS/*.cpp") file(GLOB LIBJS_SOURCES "../../Libraries/LibJS/*.cpp")
@ -53,7 +56,7 @@ file(GLOB SHELL_SOURCES "../../Shell/*.cpp")
file(GLOB SHELL_TESTS "../../Shell/Tests/*.sh") file(GLOB SHELL_TESTS "../../Shell/Tests/*.sh")
set(LAGOM_CORE_SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES}) set(LAGOM_CORE_SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES})
set(LAGOM_MORE_SOURCES ${LIBIPC_SOURCES} ${LIBLINE_SOURCES} ${LIBJS_SOURCES} ${LIBJS_SUBDIR_SOURCES} ${LIBX86_SOURCES} ${LIBCRYPTO_SOURCES} ${LIBCRYPTO_SUBDIR_SOURCES} ${LIBTLS_SOURCES} ${LIBMARKDOWN_SOURCES}) set(LAGOM_MORE_SOURCES ${LIBIPC_SOURCES} ${LIBLINE_SOURCES} ${LIBJS_SOURCES} ${LIBJS_SUBDIR_SOURCES} ${LIBX86_SOURCES} ${LIBCRYPTO_SOURCES} ${LIBCRYPTO_SUBDIR_SOURCES} ${LIBTLS_SOURCES} ${LIBMARKDOWN_SOURCES} ${LIBGEMINI_SOURCES} ${LIBGFX_SOURCES})
include_directories (../../) include_directories (../../)
include_directories (../../Libraries/) include_directories (../../Libraries/)