[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cash2ecash] branch master updated (08e28c6 -> 6351837)
From: |
gnunet |
Subject: |
[cash2ecash] branch master updated (08e28c6 -> 6351837) |
Date: |
Fri, 17 Jan 2025 22:00:36 +0100 |
This is an automated email from the git hooks/post-receive script.
manuel-geissbuehler pushed a change to branch master
in repository cash2ecash.
from 08e28c6 debugging
new e9daf6a implemented no_amount_to_wallet
new ab59bc4 implemented Cashacceptor calls
new 471fbc9 did some debugging
new 6351837 cleaned up some build in wrong places
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
build/extern/lvgl/lv_version.h | 14 -
build/extern/lvgl/lvgl.pc | 10 -
{build => src}/bank/Makefile | 46 +-
src/bank/bankCommunication.hpp | 4 +-
src/bank/bank_api_account_withdrawal.c | 23 +-
src/bank/bank_lib.c | 8 +-
src/bank/bank_lib.h | 2 +-
src/bank/taler_bank_service_cash2ecash.h | 6 +
src/cash2ecash.cpp | 26 +-
{build => src}/cashacceptor/Makefile | 36 +-
src/compile_commands.json | 3942 +++++++++++++++++++++++++
{build => src}/extern/Makefile | 20 +-
{build => src}/gui/Makefile | 60 +-
{build/extern => src/identification}/Makefile | 20 +-
{build => src}/utils/Makefile | 30 +-
15 files changed, 4092 insertions(+), 155 deletions(-)
delete mode 100644 build/extern/lvgl/lv_version.h
delete mode 100644 build/extern/lvgl/lvgl.pc
copy {build => src}/bank/Makefile (66%)
copy {build => src}/cashacceptor/Makefile (67%)
create mode 100644 src/compile_commands.json
copy {build => src}/extern/Makefile (77%)
copy {build => src}/gui/Makefile (63%)
copy {build/extern => src/identification}/Makefile (77%)
copy {build => src}/utils/Makefile (71%)
diff --git a/build/extern/lvgl/lv_version.h b/build/extern/lvgl/lv_version.h
deleted file mode 100644
index c11db60..0000000
--- a/build/extern/lvgl/lv_version.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * @file version.h
- * The current version of LVGL
- */
-
-#ifndef LVGL_VERSION_H
-#define LVGL_VERSION_H
-
-#define LVGL_VERSION_MAJOR 9
-#define LVGL_VERSION_MINOR 3
-#define LVGL_VERSION_PATCH 0
-#define LVGL_VERSION_INFO "dev"
-
-#endif /*LVGL_VERSION_H*/
diff --git a/build/extern/lvgl/lvgl.pc b/build/extern/lvgl/lvgl.pc
deleted file mode 100644
index d6f5a5c..0000000
--- a/build/extern/lvgl/lvgl.pc
+++ /dev/null
@@ -1,10 +0,0 @@
-prefix="/usr/local"
-includedir="${prefix}/include/lvgl"
-libdir=${prefix}/lib
-
-Name: lvgl
-Description: Light and Versatile Graphics Library
-URL: https://lvgl.io/
-Version: 9.3.0
-Cflags: -I${includedir}
-Libs: -L${libdir} -llvgl
diff --git a/build/bank/Makefile b/src/bank/Makefile
similarity index 66%
copy from build/bank/Makefile
copy to src/bank/Makefile
index a6fe59a..e16b928 100644
--- a/build/bank/Makefile
+++ b/src/bank/Makefile
@@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/src
+CMAKE_SOURCE_DIR = /home/cash2ecash/Documents/cash2ecash/src
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build
+CMAKE_BINARY_DIR = /home/cash2ecash/Documents/cash2ecash/src
#=============================================================================
# Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
# The main all target
all: cmake_check_build_system
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/bank//CMakeFiles/progress.marks
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bank/all
- $(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND) -E
cmake_progress_start /home/cash2ecash/Documents/cash2ecash/src/CMakeFiles
/home/cash2ecash/Documents/cash2ecash/src/bank//CMakeFiles/progress.marks
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 bank/all
+ $(CMAKE_COMMAND) -E cmake_progress_start
/home/cash2ecash/Documents/cash2ecash/src/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bank/clean
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 bank/clean
.PHONY : clean
# The main clean target
@@ -148,22 +148,22 @@ clean/fast: clean
# Prepare targets for installation.
preinstall: all
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bank/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 bank/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bank/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 bank/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 1
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
bank/CMakeFiles/bank.dir/rule:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bank/CMakeFiles/bank.dir/rule
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 bank/CMakeFiles/bank.dir/rule
.PHONY : bank/CMakeFiles/bank.dir/rule
# Convenience name for target.
@@ -172,12 +172,12 @@ bank: bank/CMakeFiles/bank.dir/rule
# fast build rule for target.
bank/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/build
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bank.dir/build.make bank/CMakeFiles/bank.dir/build
.PHONY : bank/fast
# Convenience name for target.
bank/CMakeFiles/bankCommunication.dir/rule:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2
bank/CMakeFiles/bankCommunication.dir/rule
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 bank/CMakeFiles/bankCommunication.dir/rule
.PHONY : bank/CMakeFiles/bankCommunication.dir/rule
# Convenience name for target.
@@ -186,7 +186,7 @@ bankCommunication:
bank/CMakeFiles/bankCommunication.dir/rule
# fast build rule for target.
bankCommunication/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/build
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/build
.PHONY : bankCommunication/fast
bankCommunication.o: bankCommunication.cpp.o
@@ -194,7 +194,7 @@ bankCommunication.o: bankCommunication.cpp.o
# target to build an object file
bankCommunication.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/bankCommunication.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/bankCommunication.cpp.o
.PHONY : bankCommunication.cpp.o
bankCommunication.i: bankCommunication.cpp.i
@@ -202,7 +202,7 @@ bankCommunication.i: bankCommunication.cpp.i
# target to preprocess a source file
bankCommunication.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/bankCommunication.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/bankCommunication.cpp.i
.PHONY : bankCommunication.cpp.i
bankCommunication.s: bankCommunication.cpp.s
@@ -210,7 +210,7 @@ bankCommunication.s: bankCommunication.cpp.s
# target to generate assembly for a file
bankCommunication.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/bankCommunication.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bankCommunication.dir/build.make
bank/CMakeFiles/bankCommunication.dir/bankCommunication.cpp.s
.PHONY : bankCommunication.cpp.s
bank_api_account_withdrawal.o: bank_api_account_withdrawal.c.o
@@ -218,7 +218,7 @@ bank_api_account_withdrawal.o:
bank_api_account_withdrawal.c.o
# target to build an object file
bank_api_account_withdrawal.c.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_api_account_withdrawal.c.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_api_account_withdrawal.c.o
.PHONY : bank_api_account_withdrawal.c.o
bank_api_account_withdrawal.i: bank_api_account_withdrawal.c.i
@@ -226,7 +226,7 @@ bank_api_account_withdrawal.i:
bank_api_account_withdrawal.c.i
# target to preprocess a source file
bank_api_account_withdrawal.c.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_api_account_withdrawal.c.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_api_account_withdrawal.c.i
.PHONY : bank_api_account_withdrawal.c.i
bank_api_account_withdrawal.s: bank_api_account_withdrawal.c.s
@@ -234,7 +234,7 @@ bank_api_account_withdrawal.s:
bank_api_account_withdrawal.c.s
# target to generate assembly for a file
bank_api_account_withdrawal.c.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_api_account_withdrawal.c.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_api_account_withdrawal.c.s
.PHONY : bank_api_account_withdrawal.c.s
bank_lib.o: bank_lib.c.o
@@ -242,7 +242,7 @@ bank_lib.o: bank_lib.c.o
# target to build an object file
bank_lib.c.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_lib.c.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bank.dir/build.make bank/CMakeFiles/bank.dir/bank_lib.c.o
.PHONY : bank_lib.c.o
bank_lib.i: bank_lib.c.i
@@ -250,7 +250,7 @@ bank_lib.i: bank_lib.c.i
# target to preprocess a source file
bank_lib.c.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_lib.c.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bank.dir/build.make bank/CMakeFiles/bank.dir/bank_lib.c.i
.PHONY : bank_lib.c.i
bank_lib.s: bank_lib.c.s
@@ -258,7 +258,7 @@ bank_lib.s: bank_lib.c.s
# target to generate assembly for a file
bank_lib.c.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f bank/CMakeFiles/bank.dir/build.make
bank/CMakeFiles/bank.dir/bank_lib.c.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f bank/CMakeFiles/bank.dir/build.make bank/CMakeFiles/bank.dir/bank_lib.c.s
.PHONY : bank_lib.c.s
# Help Target
@@ -295,6 +295,6 @@ help:
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
diff --git a/src/bank/bankCommunication.hpp b/src/bank/bankCommunication.hpp
index aacbd6d..8b55867 100644
--- a/src/bank/bankCommunication.hpp
+++ b/src/bank/bankCommunication.hpp
@@ -46,8 +46,8 @@ class BankCommunication{
threadInit.detach();
}
- void withdrawalRequest(struct TALER_Amount *amount, struct TALER_Amount
*suggestedAmount, const char **res_withdrawal_id, const char
**res_taler_withdraw_uri){
- std::thread
threadWithdrawalRequest(&bankCommunicationWithdrawalRequest,amount,
suggestedAmount, res_withdrawal_id, res_taler_withdraw_uri,
withdrawalRequestCallback);
+ void withdrawalRequest(struct TALER_Amount *amount, struct TALER_Amount
*suggestedAmount, bool *noAmountToWallet, const char **res_withdrawal_id, const
char **res_taler_withdraw_uri){
+ std::thread threadWithdrawalRequest(&bankCommunicationWithdrawalRequest,
amount, suggestedAmount, noAmountToWallet, res_withdrawal_id,
res_taler_withdraw_uri, withdrawalRequestCallback);
threadWithdrawalRequest.detach();
}
diff --git a/src/bank/bank_api_account_withdrawal.c
b/src/bank/bank_api_account_withdrawal.c
index 0ba16e7..06ce868 100644
--- a/src/bank/bank_api_account_withdrawal.c
+++ b/src/bank/bank_api_account_withdrawal.c
@@ -3,6 +3,7 @@
#include <gnunet/gnunet_common.h>
#include <jansson.h>
#include <microhttpd.h>
+#include <stdbool.h>
#include <stdio.h>
#include <taler/platform.h>
#include "taler_bank_service_cash2ecash.h"
@@ -149,6 +150,7 @@ TALER_BANK_account_withdrawal (
const char *account_name,
const struct TALER_Amount *amount,
const struct TALER_Amount *suggested_amount,
+ const bool *no_amount_to_wallet,
TALER_BANK_AccountWithdrawalCallback res_cb,
void *res_cb_cls)
{
@@ -157,12 +159,11 @@ TALER_BANK_account_withdrawal (
CURL *eh;
withdrawal_req = GNUNET_JSON_PACK(
- GNUNET_JSON_pack_allow_null(
- TALER_JSON_pack_amount("amount",
- amount)),
- GNUNET_JSON_pack_allow_null (
- TALER_JSON_pack_amount("suggested_amount",
- suggested_amount)));
+ GNUNET_JSON_pack_allow_null(TALER_JSON_pack_amount("amount", amount)),
+ GNUNET_JSON_pack_allow_null(
+ TALER_JSON_pack_amount("suggested_amount", suggested_amount)),
+ GNUNET_JSON_pack_allow_null(
+ GNUNET_JSON_pack_bool("no_amount_to_wallet", *no_amount_to_wallet)));
if (NULL == withdrawal_req)
{
GNUNET_break (0);
@@ -511,18 +512,20 @@ handle_withdrawalID_info_finished (void *cls,
&ir.details.ok.status),
GNUNET_JSON_spec_mark_optional(
TALER_JSON_spec_amount_any("amount",
- &ir.details.ok.amount),NULL),
+ &ir.details.ok.amount), NULL),
GNUNET_JSON_spec_mark_optional(
TALER_JSON_spec_amount_any("suggested_amount",
- &ir.details.ok.suggested_amount),NULL),
+ &ir.details.ok.suggested_amount), NULL),
+ GNUNET_JSON_spec_mark_optional(
+ GNUNET_JSON_spec_bool("no_amount_to_wallet",
&ir.details.ok.no_amount_to_wallet), NULL),
GNUNET_JSON_spec_string ("username",
&ir.details.ok.username),
GNUNET_JSON_spec_mark_optional(
GNUNET_JSON_spec_string ("selected_reserve_pub",
- &ir.details.ok.selected_reserve_pub),NULL),
+ &ir.details.ok.selected_reserve_pub), NULL),
GNUNET_JSON_spec_mark_optional(
GNUNET_JSON_spec_string ("selected_exchange_account",
-
&ir.details.ok.selected_exchange_account),NULL),
+ &ir.details.ok.selected_exchange_account),
NULL),
GNUNET_JSON_spec_end ()
};
diff --git a/src/bank/bank_lib.c b/src/bank/bank_lib.c
index 385935a..8bf772e 100644
--- a/src/bank/bank_lib.c
+++ b/src/bank/bank_lib.c
@@ -36,6 +36,7 @@ static bankCommunicationInitCallback_t extInitCallback;
*/
static bankCommunicationWithdrawalCallback_t extWithdrawalCallback;
static struct TALER_Amount *parAmount, *parSuggestedAmount;
+static bool *parNoAmountToWallet;
const char *par_res_withdrawal_id_string;
const char *par_res_taler_withdraw_uri_string;
const char **par_res_withdrawal_id;
@@ -122,8 +123,9 @@ static void account_withdrawal_cb(void *cls,
*/
static void account_token_cb(void *cls, const struct
TALER_BANK_AccountTokenResponse *atr){
(void) cls;
-
+
ath = NULL;
+ json_dumpf (atr->response, stderr, JSON_INDENT (2));
switch (atr->http_status) {
case 0:
fprintf(stderr, "Failed to obtain HTTP reply from `%s'\n",
@@ -300,6 +302,7 @@ static void runWithdrawalRequest(void *cls, char *const
*args, const char *cfgfi
"finsteraarhorn",
parAmount,
parSuggestedAmount,
+ parNoAmountToWallet,
account_withdrawal_cb,
NULL);
@@ -368,11 +371,12 @@ void
bankCommunicationInit(bankCommunicationInitCallback_t callback) {
bankCommunicationRun(runToken);
}
-void bankCommunicationWithdrawalRequest(struct TALER_Amount *amount, struct
TALER_Amount *suggestedAmount, const char **res_withdrawal_id, const char
**res_taler_withdraw_uri, bankCommunicationWithdrawalCallback_t callback){
+void bankCommunicationWithdrawalRequest(struct TALER_Amount *amount, struct
TALER_Amount *suggestedAmount, bool *noAmountToWallet, const char
**res_withdrawal_id, const char **res_taler_withdraw_uri,
bankCommunicationWithdrawalCallback_t callback){
//Store the parameters globaly
extWithdrawalCallback = callback;
parAmount = amount;
parSuggestedAmount = suggestedAmount;
+ parNoAmountToWallet = noAmountToWallet;
par_res_withdrawal_id = res_withdrawal_id;
par_res_taler_withdraw_uri = res_taler_withdraw_uri;
diff --git a/src/bank/bank_lib.h b/src/bank/bank_lib.h
index ce90e88..bfcda00 100644
--- a/src/bank/bank_lib.h
+++ b/src/bank/bank_lib.h
@@ -17,7 +17,7 @@ typedef void (*bankCommunicationWithdrawalIDInfoCallback_t)();
void bankCommunicationInit(bankCommunicationInitCallback_t callback);
-void bankCommunicationWithdrawalRequest(struct TALER_Amount *amount, struct
TALER_Amount *suggestedAmount, const char **res_withdrawal_id, const char
**res_taler_withdraw_uri, bankCommunicationWithdrawalCallback_t callback);
+ void bankCommunicationWithdrawalRequest(struct TALER_Amount *amount, struct
TALER_Amount *suggestedAmount, bool *noAmountToWallet, const char
**res_withdrawal_id, const char **res_taler_withdraw_uri,
bankCommunicationWithdrawalCallback_t callback);
void bankCommunicationWithdrawalIDInfoRequest(const char *withdrawal_id, const
char **res_status, bankCommunicationWithdrawalIDInfoCallback_t callback);
void bankCommunicationWithdrawalConfirmRequest(const char *withdrawal_id,
struct TALER_Amount *amount, bankCommunicationWithdrawalConfirmCallback_t
callback);
diff --git a/src/bank/taler_bank_service_cash2ecash.h
b/src/bank/taler_bank_service_cash2ecash.h
index 6673994..a6ba610 100644
--- a/src/bank/taler_bank_service_cash2ecash.h
+++ b/src/bank/taler_bank_service_cash2ecash.h
@@ -101,6 +101,7 @@ TALER_BANK_account_withdrawal (
const char *account_name,
const struct TALER_Amount *amount,
const struct TALER_Amount *suggested_amount,
+ const bool *no_amount_to_wallet,
TALER_BANK_AccountWithdrawalCallback res_cb,
void *res_cb_cls);
@@ -255,6 +256,11 @@ struct TALER_BANK_WithdrawalIDInfoResponse
*/
struct TALER_Amount suggested_amount;
+ /**
+ * If true, the wallet must not allow the user to specify an amount to
withdraw (optional)
+ */
+ bool no_amount_to_wallet;
+
/**
* Account username
*/
diff --git a/src/cash2ecash.cpp b/src/cash2ecash.cpp
index 7b81a5c..e973618 100644
--- a/src/cash2ecash.cpp
+++ b/src/cash2ecash.cpp
@@ -1,9 +1,9 @@
// This is the main function for the cash2ecash program
-#include <cstdio>
#include <iostream>
#include <ostream>
#include <vector>
#include <mutex>
+#include "cashacceptors.hpp"
#include "utils.hpp"
#include "gui.hpp"
#include "global.hpp"
@@ -37,12 +37,16 @@ char *string = hello;
Gui gui;
Timer withdrawalStatusTimer;
+
ScreenWelcome *screenWelcome = new ScreenWelcome;
ScreenIdentification *screenIdentification = new ScreenIdentification;
ScreenConnection *screenConnection = new ScreenConnection;
ScreenAcceptCash *screenAcceptCash = new ScreenAcceptCash(string);
void guiDriver();
BankCommunication bankCommunication;
+char serialpath[] = "/dev/ttyAMA3";
+DG600F Cashaccepor(serialpath);
+TALER_Amount confirmedAmount;
typedef void(*action_t)();
@@ -82,8 +86,8 @@ void actionEventAbortConnection(){
void actionEventFinishCashin(){
std::cout << "Action Event Finish Cashin called" << std::endl;
- static struct TALER_Amount confirmedAmount;
- TALER_string_to_amount("KUDOS:2.0", &confirmedAmount);
+ Cashaccepor.readAccumulated(&confirmedAmount);
+ Cashaccepor.stopMoneyAcceptance();
bankCommunication.withdrawalConfirmRequest(withdrawal_id, &confirmedAmount);
gui.setActiveScreen(screenWelcome);
}
@@ -100,10 +104,11 @@ void actionEventIdentificationSuccess(){
void actionEventBankTokenDone(){
std::cout << "Action Event Bank Token Done called" << std::endl;
- static struct TALER_Amount amountZero;
- TALER_amount_set_zero("KUDOS", &amountZero);
- amountZero.fraction = 5000000;
- bankCommunication.withdrawalRequest(&amountZero, NULL, &withdrawal_id,
&taler_withdraw_uri);
+ //static struct TALER_Amount amountZero;
+ //TALER_amount_set_zero("KUDOS", &amountZero);
+ //amountZero.fraction = 5000000;
+ static bool noAmountToWallet = true;
+ bankCommunication.withdrawalRequest(NULL, NULL, &noAmountToWallet,
&withdrawal_id, &taler_withdraw_uri);
}
void actionEventBankWithdrawalDone(){
@@ -115,6 +120,7 @@ void actionEventBankWithdrawalDone(){
void actionEventBankWStatusSelected(){
std::cout << "Action Event Bank Withdrawal Status Confirmed called" <<
std::endl;
gui.setActiveScreen(screenAcceptCash);
+ Cashaccepor.startMoneyAcceptance();
}
void actionEventBankWStatusPending(){
@@ -134,8 +140,8 @@ void actionEventIdentificationTimeout(){
void actionEventAcceptCashTimeout(){
std::cout << "Action Event Acceptcash Timeout called" << std::endl;
- static struct TALER_Amount confirmedAmount;
- TALER_string_to_amount("KUDOS:2.0", &confirmedAmount);
+ Cashaccepor.readAccumulated(&confirmedAmount);
+ Cashaccepor.stopMoneyAcceptance();
bankCommunication.withdrawalConfirmRequest(withdrawal_id, &confirmedAmount);
}
@@ -226,7 +232,7 @@ void eventHandler(){
}
int main(int argc, char *argv[]){
- char serialpath[] = "/dev/ttyAMA3";
+
std::cout << "The Program is running" <<std::endl;
Timer timer1;
timer1.setTimeMillis(10000);
diff --git a/build/cashacceptor/Makefile b/src/cashacceptor/Makefile
similarity index 67%
copy from build/cashacceptor/Makefile
copy to src/cashacceptor/Makefile
index 466e37c..f7d43b9 100644
--- a/build/cashacceptor/Makefile
+++ b/src/cashacceptor/Makefile
@@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/src
+CMAKE_SOURCE_DIR = /home/cash2ecash/Documents/cash2ecash/src
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build
+CMAKE_BINARY_DIR = /home/cash2ecash/Documents/cash2ecash/src
#=============================================================================
# Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
# The main all target
all: cmake_check_build_system
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/cashacceptor//CMakeFiles/progress.marks
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cashacceptor/all
- $(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND) -E
cmake_progress_start /home/cash2ecash/Documents/cash2ecash/src/CMakeFiles
/home/cash2ecash/Documents/cash2ecash/src/cashacceptor//CMakeFiles/progress.marks
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 cashacceptor/all
+ $(CMAKE_COMMAND) -E cmake_progress_start
/home/cash2ecash/Documents/cash2ecash/src/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cashacceptor/clean
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 cashacceptor/clean
.PHONY : clean
# The main clean target
@@ -148,22 +148,22 @@ clean/fast: clean
# Prepare targets for installation.
preinstall: all
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cashacceptor/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 cashacceptor/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cashacceptor/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 cashacceptor/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 1
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
cashacceptor/CMakeFiles/cashacceptor.dir/rule:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2
cashacceptor/CMakeFiles/cashacceptor.dir/rule
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 cashacceptor/CMakeFiles/cashacceptor.dir/rule
.PHONY : cashacceptor/CMakeFiles/cashacceptor.dir/rule
# Convenience name for target.
@@ -172,7 +172,7 @@ cashacceptor: cashacceptor/CMakeFiles/cashacceptor.dir/rule
# fast build rule for target.
cashacceptor/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/build
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/build
.PHONY : cashacceptor/fast
cashacceptor.o: cashacceptor.cpp.o
@@ -180,7 +180,7 @@ cashacceptor.o: cashacceptor.cpp.o
# target to build an object file
cashacceptor.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/cashacceptor.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/cashacceptor.cpp.o
.PHONY : cashacceptor.cpp.o
cashacceptor.i: cashacceptor.cpp.i
@@ -188,7 +188,7 @@ cashacceptor.i: cashacceptor.cpp.i
# target to preprocess a source file
cashacceptor.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/cashacceptor.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/cashacceptor.cpp.i
.PHONY : cashacceptor.cpp.i
cashacceptor.s: cashacceptor.cpp.s
@@ -196,7 +196,7 @@ cashacceptor.s: cashacceptor.cpp.s
# target to generate assembly for a file
cashacceptor.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/cashacceptor.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/cashacceptor.cpp.s
.PHONY : cashacceptor.cpp.s
dg600f.o: dg600f.cpp.o
@@ -204,7 +204,7 @@ dg600f.o: dg600f.cpp.o
# target to build an object file
dg600f.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/dg600f.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/dg600f.cpp.o
.PHONY : dg600f.cpp.o
dg600f.i: dg600f.cpp.i
@@ -212,7 +212,7 @@ dg600f.i: dg600f.cpp.i
# target to preprocess a source file
dg600f.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/dg600f.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/dg600f.cpp.i
.PHONY : dg600f.cpp.i
dg600f.s: dg600f.cpp.s
@@ -220,7 +220,7 @@ dg600f.s: dg600f.cpp.s
# target to generate assembly for a file
dg600f.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/dg600f.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f cashacceptor/CMakeFiles/cashacceptor.dir/build.make
cashacceptor/CMakeFiles/cashacceptor.dir/dg600f.cpp.s
.PHONY : dg600f.cpp.s
# Help Target
@@ -253,6 +253,6 @@ help:
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
diff --git a/src/compile_commands.json b/src/compile_commands.json
new file mode 100644
index 0000000..2bc42be
--- /dev/null
+++ b/src/compile_commands.json
@@ -0,0 +1,3942 @@
+[
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg -g -o
[...]
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/cash2ecash.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/cashacceptor",
+ "command": "/usr/bin/c++
-I/home/cash2ecash/Documents/cash2ecash/src/include -g -o
CMakeFiles/cashacceptor.dir/cashacceptor.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/cashacceptor/cashacceptor.cpp",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/cashacceptor/cashacceptor.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/cashacceptor",
+ "command": "/usr/bin/c++
-I/home/cash2ecash/Documents/cash2ecash/src/include -g -o
CMakeFiles/cashacceptor.dir/dg600f.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/cashacceptor/dg600f.cpp",
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/cashacceptor/dg600f.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/bank",
+ "command": "/usr/bin/cc -I/home/cash2ecash/Documents/cash2ecash/src/include
-g -o CMakeFiles/bank.dir/bank_lib.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/bank/bank_lib.c",
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/bank/bank_lib.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/bank",
+ "command": "/usr/bin/cc -I/home/cash2ecash/Documents/cash2ecash/src/include
-g -o CMakeFiles/bank.dir/bank_api_account_withdrawal.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/bank/bank_api_account_withdrawal.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/bank/bank_api_account_withdrawal.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/bank",
+ "command": "/usr/bin/c++
-I/home/cash2ecash/Documents/cash2ecash/src/include -g -o
CMakeFiles/bankCommunication.dir/bankCommunication.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/bank/bankCommunication.cpp",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/bank/bankCommunication.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_group.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_group.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_group.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_class.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_class.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_class.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_draw.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_draw.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_draw.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_event.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_event.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_event.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_id_builtin.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_id_builtin.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_id_builtin.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_pos.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_pos.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_pos.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_property.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_property.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_property.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_scroll.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_scroll.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_scroll.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_style.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_style.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_style.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_style_gen.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_style_gen.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_style_gen.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_obj_tree.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_tree.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_obj_tree.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/core/lv_refr.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_refr.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/core/lv_refr.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/display/lv_display.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/display/lv_display.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/display/lv_display.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/dma2d/lv_draw_dma2d.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/dma2d/lv_draw_dma2d.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d_fill.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/dma2d/lv_draw_dma2d_fill.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/dma2d/lv_draw_dma2d_img.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/dma2d/lv_draw_dma2d_img.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/dma2d/lv_draw_dma2d_img.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_arc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_arc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_arc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_buf.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_buf.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_buf.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_image.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_image.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_image.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_label.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_label.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_label.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_line.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_line.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_line.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_mask.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_mask.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_mask.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_rect.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_rect.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_rect.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_triangle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_triangle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_triangle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_draw_vector.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_vector.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_draw_vector.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/lv_image_decoder.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_image_decoder.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/lv_image_decoder.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_arc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_border.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_border.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_border.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_fill.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_img.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_img.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_img.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_label.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_label.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_label.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_layer.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_line.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_line.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_line.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_stm32_hal.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_triangle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_draw_nema_gfx_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nema_gfx/lv_nema_gfx_path.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_nema_gfx_path.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nema_gfx/lv_nema_gfx_path.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_buf_pxp.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_buf_pxp.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_fill.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp_fill.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_img.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp_img.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_draw_pxp_layer.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_draw_pxp_layer.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_cfg.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_pxp_cfg.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_osa.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_pxp_osa.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_pxp_osa.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/pxp/lv_pxp_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_pxp_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/pxp/lv_pxp_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_buf_vglite.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_buf_vglite.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_buf_vglite.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_arc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_arc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_arc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_border.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_border.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_border.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_fill.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_fill.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_fill.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_img.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_img.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_img.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_label.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_label.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_label.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_layer.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_layer.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_layer.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_line.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_line.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_line.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_draw_vglite_triangle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_triangle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_draw_vglite_triangle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_buf.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_buf.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_buf.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_matrix.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_matrix.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_matrix.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_path.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_path.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_path.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/nxp/vglite/lv_vglite_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/nxp/vglite/lv_vglite_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/opengles/lv_draw_opengles.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/opengles/lv_draw_opengles.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/opengles/lv_draw_opengles.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_arc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_border.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_border.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_fill.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_image.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_image.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_label.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_label.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_line.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_line.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c.o
-c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_mask_rectangle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_triangle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/renesas/dave2d/lv_draw_dave2d_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sdl/lv_draw_sdl.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sdl/lv_draw_sdl.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sdl/lv_draw_sdl.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/helium/lv_blend_helium.S.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/helium/lv_blend_helium.S",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/helium/lv_blend_helium.S"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_al88.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_argb8888.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_i1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_l8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb565.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/lv_draw_sw_blend_to_rgb888.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -o
CMakeFiles/lvgl.dir/src/draw/sw/blend/neon/lv_blend_neon.S.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/neon/lv_blend_neon.S",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/blend/neon/lv_blend_neon.S"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_arc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_arc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_arc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_border.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_border.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_border.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_box_shadow.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_box_shadow.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_box_shadow.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_fill.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_fill.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_fill.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_gradient.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_gradient.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_gradient.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_img.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_img.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_img.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_letter.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_letter.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_letter.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_line.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_line.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_line.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_mask.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_mask.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_mask.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_mask_rect.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_mask_rect.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_mask_rect.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_transform.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_transform.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_transform.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_triangle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_triangle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_triangle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/sw/lv_draw_sw_vector.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_vector.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/sw/lv_draw_sw_vector.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_buf_vg_lite.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_buf_vg_lite.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_arc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_arc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_border.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_border.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_box_shadow.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_fill.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_fill.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_img.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_img.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_label.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_label.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_layer.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_layer.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_line.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_line.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_mask_rect.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_triangle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_triangle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_draw_vg_lite_vector.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_draw_vg_lite_vector.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_decoder.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_decoder.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_grad.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_grad.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_grad.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_math.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_math.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_math.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_path.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_path.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_path.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_pending.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_pending.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_pending.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_stroke.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_stroke.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/draw/vg_lite/lv_vg_lite_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/draw/vg_lite/lv_vg_lite_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/drm/lv_linux_drm.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/drm/lv_linux_drm.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/drm/lv_linux_drm.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/fb/lv_linux_fbdev.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/fb/lv_linux_fbdev.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/fb/lv_linux_fbdev.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/ili9341/lv_ili9341.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/ili9341/lv_ili9341.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/ili9341/lv_ili9341.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/lcd/lv_lcd_generic_mipi.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/lcd/lv_lcd_generic_mipi.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/renesas_glcdc/lv_renesas_glcdc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/st7735/lv_st7735.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st7735/lv_st7735.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st7735/lv_st7735.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/st7789/lv_st7789.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st7789/lv_st7789.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st7789/lv_st7789.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/st7796/lv_st7796.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st7796/lv_st7796.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st7796/lv_st7796.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/display/st_ltdc/lv_st_ltdc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st_ltdc/lv_st_ltdc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/display/st_ltdc/lv_st_ltdc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/evdev/lv_evdev.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/evdev/lv_evdev.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/evdev/lv_evdev.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/glfw/lv_glfw_window.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_glfw_window.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_glfw_window.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/glfw/lv_opengles_debug.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_opengles_debug.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_opengles_debug.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/glfw/lv_opengles_driver.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_opengles_driver.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_opengles_driver.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/glfw/lv_opengles_texture.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_opengles_texture.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/glfw/lv_opengles_texture.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/libinput/lv_libinput.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/libinput/lv_libinput.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/libinput/lv_libinput.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/libinput/lv_xkb.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/libinput/lv_xkb.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/libinput/lv_xkb.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_cache.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_cache.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_cache.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_entry.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_entry.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_entry.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_fbdev.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_fbdev.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_image_cache.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_image_cache.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_lcd.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_lcd.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_lcd.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_libuv.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_libuv.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_libuv.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_profiler.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_profiler.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_profiler.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/nuttx/lv_nuttx_touchscreen.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/nuttx/lv_nuttx_touchscreen.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/qnx/lv_qnx.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/qnx/lv_qnx.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/qnx/lv_qnx.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_keyboard.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_keyboard.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_keyboard.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_mouse.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_mouse.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_mouse.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_mousewheel.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_mousewheel.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_mousewheel.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/sdl/lv_sdl_window.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_window.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/sdl/lv_sdl_window.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wayland.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/wayland/lv_wayland.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/wayland/lv_wayland.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/wayland/lv_wayland_smm.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/wayland/lv_wayland_smm.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/wayland/lv_wayland_smm.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_context.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/windows/lv_windows_context.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/windows/lv_windows_context.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_display.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/windows/lv_windows_display.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/windows/lv_windows_display.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/windows/lv_windows_input.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/windows/lv_windows_input.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/windows/lv_windows_input.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/x11/lv_x11_display.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/x11/lv_x11_display.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/x11/lv_x11_display.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/drivers/x11/lv_x11_input.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/x11/lv_x11_input.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/drivers/x11/lv_x11_input.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_binfont_loader.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_binfont_loader.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_binfont_loader.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_dejavu_16_persian_hebrew.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_fmt_txt.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_fmt_txt.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_fmt_txt.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_10.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_10.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_10.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_12.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_12.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_12.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_14.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_14.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_14.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_16.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_16.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_16.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_18.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_18.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_18.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_20.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_20.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_20.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_22.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_22.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_22.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_24.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_24.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_24.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_26.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_26.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_26.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_28.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_28.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_28.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_28_compressed.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_28_compressed.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_28_compressed.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_30.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_30.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_30.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_32.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_32.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_32.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_34.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_34.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_34.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_36.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_36.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_36.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_38.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_38.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_38.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_40.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_40.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_40.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_42.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_42.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_42.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_44.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_44.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_44.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_46.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_46.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_46.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_48.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_48.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_48.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_montserrat_8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_8.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_montserrat_8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_simsun_14_cjk.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_simsun_14_cjk.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_simsun_14_cjk.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_simsun_16_cjk.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_simsun_16_cjk.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_simsun_16_cjk.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_unscii_16.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_unscii_16.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_unscii_16.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/font/lv_font_unscii_8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_unscii_8.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/font/lv_font_unscii_8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/indev/lv_indev.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/indev/lv_indev.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/indev/lv_indev.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/indev/lv_indev_gesture.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/indev/lv_indev_gesture.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/indev/lv_indev_gesture.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/indev/lv_indev_scroll.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/indev/lv_indev_scroll.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/indev/lv_indev_scroll.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/layouts/flex/lv_flex.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/layouts/flex/lv_flex.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/layouts/flex/lv_flex.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/layouts/grid/lv_grid.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/layouts/grid/lv_grid.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/layouts/grid/lv_grid.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/layouts/lv_layout.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/layouts/lv_layout.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/layouts/lv_layout.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/barcode/code128.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/barcode/code128.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/barcode/code128.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/barcode/lv_barcode.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/barcode/lv_barcode.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/barcode/lv_barcode.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/bin_decoder/lv_bin_decoder.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/bin_decoder/lv_bin_decoder.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/bin_decoder/lv_bin_decoder.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/bmp/lv_bmp.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/bmp/lv_bmp.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/bmp/lv_bmp.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/expat/xmlparse.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmlparse.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmlparse.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/expat/xmlrole.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmlrole.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmlrole.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/expat/xmltok.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmltok.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmltok.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/expat/xmltok_impl.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmltok_impl.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmltok_impl.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/expat/xmltok_ns.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmltok_ns.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/expat/xmltok_ns.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/ffmpeg/lv_ffmpeg.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ffmpeg/lv_ffmpeg.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ffmpeg/lv_ffmpeg.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_glyph.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype_glyph.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype_glyph.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_image.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype_image.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype_image.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/freetype/lv_freetype_outline.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype_outline.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_freetype_outline.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/freetype/lv_ftsystem.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_ftsystem.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/freetype/lv_ftsystem.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_cbfs.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_cbfs.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_cbfs.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_fatfs.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_fatfs.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_fatfs.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_littlefs.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_littlefs.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_littlefs.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_memfs.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_memfs.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_memfs.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_posix.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_posix.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_posix.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_stdio.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_stdio.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_stdio.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/fsdrv/lv_fs_win32.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_win32.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/fsdrv/lv_fs_win32.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/gif/gifdec.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/gif/gifdec.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/gif/gifdec.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/gif/lv_gif.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/gif/lv_gif.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/gif/lv_gif.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/libjpeg_turbo/lv_libjpeg_turbo.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/libpng/lv_libpng.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/libpng/lv_libpng.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/libpng/lv_libpng.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/lodepng/lodepng.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/lodepng/lodepng.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/lodepng/lodepng.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/lodepng/lv_lodepng.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/lodepng/lv_lodepng.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/lodepng/lv_lodepng.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/lz4/lz4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/lz4/lz4.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/lz4/lz4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/qrcode/lv_qrcode.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/qrcode/lv_qrcode.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/qrcode/lv_qrcode.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/qrcode/qrcodegen.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/qrcode/qrcodegen.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/qrcode/qrcodegen.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/rle/lv_rle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/rle/lv_rle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/rle/lv_rle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/rlottie/lv_rlottie.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/rlottie/lv_rlottie.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/rlottie/lv_rlottie.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/svg/lv_svg.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/svg/lv_svg_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/svg/lv_svg_render.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg_render.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg_render.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/svg/lv_svg_token.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg_token.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/svg/lv_svg_token.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/tiny_ttf/lv_tiny_ttf.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tiny_ttf/lv_tiny_ttf.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tiny_ttf/lv_tiny_ttf.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/tjpgd/lv_tjpgd.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tjpgd/lv_tjpgd.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tjpgd/lv_tjpgd.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/libs/tjpgd/tjpgd.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tjpgd/tjpgd.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tjpgd/tjpgd.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/lv_init.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/lv_init.c",
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/lv_init.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/cache/lv_cache.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_cache.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_cache.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/cache/lv_cache_entry.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_cache_entry.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_cache_entry.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/cache/lv_cache_lru_rb.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_cache_lru_rb.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_cache_lru_rb.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/cache/lv_image_cache.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_image_cache.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_image_cache.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/cache/lv_image_header_cache.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_image_header_cache.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/cache/lv_image_header_cache.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_anim.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_anim.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_anim.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_anim_timeline.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_anim_timeline.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_anim_timeline.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_area.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_area.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_area.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_array.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_array.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_array.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_async.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_async.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_async.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_bidi.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_bidi.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_bidi.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_circle_buf.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_circle_buf.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_circle_buf.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_color.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_color.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_color.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_color_op.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_color_op.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_color_op.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_event.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_event.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_event.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_fs.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_fs.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_fs.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_iter.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_iter.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_iter.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_ll.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_ll.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_ll.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_log.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_log.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_log.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_lru.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_lru.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_lru.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_math.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_math.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_math.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_matrix.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_matrix.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_matrix.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_palette.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_palette.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_palette.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_profiler_builtin.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_profiler_builtin.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_profiler_builtin.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_rb.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_rb.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_rb.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_style.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_style.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_style.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_style_gen.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_style_gen.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_style_gen.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_templ.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_templ.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_templ.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_text.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_text.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_text.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_text_ap.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_text_ap.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_text_ap.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_timer.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_timer.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_timer.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_tree.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_tree.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_tree.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/misc/lv_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/misc/lv_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/osal/lv_cmsis_rtos2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_cmsis_rtos2.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_cmsis_rtos2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/osal/lv_freertos.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_freertos.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_freertos.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/osal/lv_mqx.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_mqx.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_mqx.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/osal/lv_os.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_os.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_os.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/osal/lv_pthread.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_pthread.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_pthread.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/osal/lv_rtthread.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_rtthread.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_rtthread.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/osal/lv_windows.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_windows.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/osal/lv_windows.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/file_explorer/lv_file_explorer.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/file_explorer/lv_file_explorer.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/file_explorer/lv_file_explorer.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/font_manager/lv_font_manager.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/font_manager/lv_font_manager.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/font_manager/lv_font_manager.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/font_manager/lv_font_manager_recycle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/font_manager/lv_font_manager_recycle.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/font_manager/lv_font_manager_recycle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/font_manager/lv_font_manager_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/font_manager/lv_font_manager_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/font_manager/lv_font_manager_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/fragment/lv_fragment.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/fragment/lv_fragment.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/fragment/lv_fragment.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/fragment/lv_fragment_manager.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/fragment/lv_fragment_manager.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/fragment/lv_fragment_manager.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/gridnav/lv_gridnav.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/gridnav/lv_gridnav.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/gridnav/lv_gridnav.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/ime/lv_ime_pinyin.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/ime/lv_ime_pinyin.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/ime/lv_ime_pinyin.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/imgfont/lv_imgfont.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/imgfont/lv_imgfont.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/imgfont/lv_imgfont.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/monkey/lv_monkey.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/monkey/lv_monkey.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/monkey/lv_monkey.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/observer/lv_observer.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/observer/lv_observer.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/observer/lv_observer.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/snapshot/lv_snapshot.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/snapshot/lv_snapshot.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/snapshot/lv_snapshot.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/sysmon/lv_sysmon.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/sysmon/lv_sysmon.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/sysmon/lv_sysmon.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/vg_lite_tvg/vg_lite_matrix.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/vg_lite_tvg/vg_lite_matrix.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/vg_lite_tvg/vg_lite_matrix.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/lv_xml.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/lv_xml_base_types.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_base_types.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_base_types.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/lv_xml_component.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_component.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_component.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/lv_xml_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/lv_xml_style.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_style.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_style.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/lv_xml_utils.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_utils.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_utils.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/lv_xml_widget.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_widget.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/lv_xml_widget.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_button_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_button_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_button_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_chart_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_chart_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_chart_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_image_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_image_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_image_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_label_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_label_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_label_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_obj_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_obj_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_obj_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_slider_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_slider_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_slider_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/others/xml/parsers/lv_xml_tabview_parser.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_tabview_parser.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/xml/parsers/lv_xml_tabview_parser.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_mem_core_builtin.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_mem_core_builtin.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_mem_core_builtin.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_sprintf_builtin.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_sprintf_builtin.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_sprintf_builtin.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_string_builtin.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_string_builtin.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_string_builtin.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/builtin/lv_tlsf.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_tlsf.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/builtin/lv_tlsf.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/clib/lv_mem_core_clib.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/clib/lv_mem_core_clib.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/clib/lv_mem_core_clib.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/clib/lv_sprintf_clib.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/clib/lv_sprintf_clib.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/clib/lv_sprintf_clib.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/clib/lv_string_clib.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/clib/lv_string_clib.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/clib/lv_string_clib.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/lv_mem.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/lv_mem.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/lv_mem.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/micropython/lv_mem_core_micropython.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/micropython/lv_mem_core_micropython.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/micropython/lv_mem_core_micropython.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/rtthread/lv_mem_core_rtthread.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/rtthread/lv_mem_core_rtthread.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/rtthread/lv_mem_core_rtthread.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/rtthread/lv_sprintf_rtthread.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/rtthread/lv_sprintf_rtthread.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/rtthread/lv_sprintf_rtthread.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/stdlib/rtthread/lv_string_rtthread.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/rtthread/lv_string_rtthread.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/stdlib/rtthread/lv_string_rtthread.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/themes/default/lv_theme_default.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/default/lv_theme_default.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/default/lv_theme_default.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/themes/lv_theme.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/lv_theme.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/lv_theme.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/themes/mono/lv_theme_mono.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/mono/lv_theme_mono.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/mono/lv_theme_mono.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/themes/simple/lv_theme_simple.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/simple/lv_theme_simple.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/themes/simple/lv_theme_simple.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/tick/lv_tick.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/tick/lv_tick.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/tick/lv_tick.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/animimage/lv_animimage.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/animimage/lv_animimage.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/animimage/lv_animimage.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/arc/lv_arc.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/arc/lv_arc.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/arc/lv_arc.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/bar/lv_bar.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/bar/lv_bar.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/bar/lv_bar.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/button/lv_button.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/button/lv_button.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/button/lv_button.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/buttonmatrix/lv_buttonmatrix.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/buttonmatrix/lv_buttonmatrix.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/buttonmatrix/lv_buttonmatrix.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar_chinese.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar_chinese.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar_chinese.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar_header_arrow.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar_header_arrow.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar_header_arrow.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/calendar/lv_calendar_header_dropdown.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar_header_dropdown.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/calendar/lv_calendar_header_dropdown.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/canvas/lv_canvas.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/canvas/lv_canvas.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/canvas/lv_canvas.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/chart/lv_chart.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/chart/lv_chart.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/chart/lv_chart.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/checkbox/lv_checkbox.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/checkbox/lv_checkbox.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/checkbox/lv_checkbox.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/dropdown/lv_dropdown.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/dropdown/lv_dropdown.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/dropdown/lv_dropdown.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/image/lv_image.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/image/lv_image.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/image/lv_image.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/imagebutton/lv_imagebutton.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/imagebutton/lv_imagebutton.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/imagebutton/lv_imagebutton.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/keyboard/lv_keyboard.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/keyboard/lv_keyboard.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/keyboard/lv_keyboard.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/label/lv_label.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/label/lv_label.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/label/lv_label.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/led/lv_led.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/led/lv_led.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/led/lv_led.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/line/lv_line.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/line/lv_line.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/line/lv_line.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/list/lv_list.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/list/lv_list.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/list/lv_list.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/lottie/lv_lottie.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/lottie/lv_lottie.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/lottie/lv_lottie.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/menu/lv_menu.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/menu/lv_menu.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/menu/lv_menu.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/msgbox/lv_msgbox.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/msgbox/lv_msgbox.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/msgbox/lv_msgbox.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/objx_templ/lv_objx_templ.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/objx_templ/lv_objx_templ.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/objx_templ/lv_objx_templ.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_dropdown_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_dropdown_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_dropdown_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_image_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_image_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_image_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_keyboard_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_keyboard_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_keyboard_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_label_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_label_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_label_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_obj_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_obj_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_obj_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_roller_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_roller_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_roller_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_style_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_style_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_style_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/property/lv_textarea_properties.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_textarea_properties.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/property/lv_textarea_properties.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/roller/lv_roller.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/roller/lv_roller.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/roller/lv_roller.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/scale/lv_scale.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/scale/lv_scale.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/scale/lv_scale.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/slider/lv_slider.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/slider/lv_slider.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/slider/lv_slider.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/span/lv_span.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/span/lv_span.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/span/lv_span.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/spinbox/lv_spinbox.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/spinbox/lv_spinbox.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/spinbox/lv_spinbox.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/spinner/lv_spinner.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/spinner/lv_spinner.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/spinner/lv_spinner.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/switch/lv_switch.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/switch/lv_switch.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/switch/lv_switch.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/table/lv_table.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/table/lv_table.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/table/lv_table.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/tabview/lv_tabview.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/tabview/lv_tabview.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/tabview/lv_tabview.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/textarea/lv_textarea.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/textarea/lv_textarea.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/textarea/lv_textarea.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/tileview/lv_tileview.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/tileview/lv_tileview.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/tileview/lv_tileview.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl.dir/src/widgets/win/lv_win.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/win/lv_win.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/widgets/win/lv_win.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgAccessor.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgAccessor.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgAnimation.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgAnimation.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgCanvas.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/th [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgCanvas.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgCapi.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thor [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgCapi.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgCompressor.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/lib [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgCompressor.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgFill.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thor [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgFill.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgGlCanvas.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgGlCanvas.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgInitializer.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/li [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgInitializer.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLoader.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/th [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLoader.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieAnimation.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/sr [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieAnimation.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieBuilder.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieBuilder.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieExpressions.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieExpressions.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieInterpolator.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieInterpolator.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieLoader.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/l [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieLoader.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieModel.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/li [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieModel.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieModifier.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieModifier.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieParser.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/l [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieParser.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgLottieParserHandler.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgLottieParserHandler.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgMath.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thor [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgMath.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgPaint.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tho [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgPaint.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgPicture.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/t [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgPicture.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgRawLoader.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgRawLoader.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgRender.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/th [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgRender.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSaver.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tho [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSaver.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgScene.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tho [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgScene.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgShape.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tho [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgShape.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgStr.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorv [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgStr.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgCssStyle.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/li [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSvgCssStyle.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgLoader.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSvgLoader.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgPath.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/t [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSvgPath.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgSceneBuilder.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/sr [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSvgSceneBuilder.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSvgUtil.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/t [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSvgUtil.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwCanvas.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwCanvas.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwFill.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/th [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwFill.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwImage.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/t [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwImage.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwMath.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/th [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwMath.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwMemPool.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwMemPool.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwPostEffect.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/l [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwPostEffect.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwRaster.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwRaster.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwRenderer.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/lib [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwRenderer.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwRle.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/tho [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwRle.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwShape.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/t [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwShape.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgSwStroke.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgSwStroke.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgTaskScheduler.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgTaskScheduler.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgText.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thor [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgText.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgWgCanvas.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgWgCanvas.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-o CMakeFiles/lvgl_thorvg.dir/src/libs/thorvg/tvgXmlParser.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg/tvgXmlParser.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu++17
-Wunused-parameter -o
CMakeFiles/lvgl_thorvg.dir/src/others/vg_lite_tvg/vg_lite_tvg.cpp.o -c
/home/cash2ecash/Documents/cash2ecash [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/others/vg_lite_tvg/vg_lite_tvg.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/anim/l [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/anim/lv_example_anim_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/anim/l [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/anim/lv_example_anim_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/anim/l [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/anim/lv_example_anim_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/anim/lv_example_anim_timeline_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exampl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/anim/lv_example_anim_timeline_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/animimg001.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/anim [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/animimg001.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/animimg002.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/anim [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/animimg002.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/animimg003.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/anim [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/animimg003.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/emoji/img_emoji_F617.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/a [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/emoji/img_emoji_F617.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/img_caret_down.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_caret_down.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/img_cogwheel_argb.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/asse [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_cogwheel_argb.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/img_cogwheel_indexed16.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_cogwheel_indexed16.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/img_cogwheel_rgb.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/asset [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_cogwheel_rgb.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/img_hand.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_hand.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_hand.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/img_skew_strip.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_skew_strip.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/img_star.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_star.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img_star.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/imgbtn_left.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/img [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/imgbtn_left.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/imgbtn_mid.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/imgb [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/imgbtn_mid.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/assets/imgbtn_right.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/im [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/assets/imgbtn_right.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_bubble.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/event/lv_example_event_bubble.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_button.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/event/lv_example_event_button.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_click.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/event/lv_example_event_click.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_draw.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/event/lv_example_event_draw.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/event/lv_example_event_streak.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/event/lv_example_event_streak.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/get_started/lv_example_get_started_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/get_started/lv_example_get_started_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/get_started/lv_example_get_started_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/get_started/lv_example_get_started_4.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/get_started/lv_example_get_started_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/flex/lv_example_flex_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/flex/lv_example_flex_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/flex/lv_example_flex_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/flex/lv_example_flex_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/flex/lv_example_flex_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/flex/lv_example_flex_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/flex/lv_example_flex_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/grid/lv_example_grid_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/grid/lv_example_grid_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/grid/lv_example_grid_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/grid/lv_example_grid_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/grid/lv_example_grid_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/layouts/grid/lv_example_grid_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/layouts/grid/lv_example_grid_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/barcode/lv_example_barcode_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exam [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/barcode/lv_example_barcode_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/bmp/lv_example_bmp_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/lib [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/bmp/lv_example_bmp_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/ffmpeg/lv_example_ffmpeg_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exampl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/ffmpeg/lv_example_ffmpeg_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/ffmpeg/lv_example_ffmpeg_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exampl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/ffmpeg/lv_example_ffmpeg_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/freetype/lv_example_freetype_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/freetype/lv_example_freetype_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/freetype/lv_example_freetype_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/freetype/lv_example_freetype_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/gif/img_bulb_gif.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/gi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/gif/img_bulb_gif.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/gif/lv_example_gif_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/lib [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/gif/lv_example_gif_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/libjpeg_turbo/lv_example_libjpeg_turbo_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/exte [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/libjpeg_turbo/lv_example_libjpeg_turbo_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/libpng/img_png_demo.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/libpng/img_png_demo.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/libpng/lv_example_libpng_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exampl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/libpng/lv_example_libpng_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/lodepng/img_wink_png.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/lib [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/lodepng/img_wink_png.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/lodepng/lv_example_lodepng_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exam [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/lodepng/lv_example_lodepng_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/qrcode/lv_example_qrcode_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exampl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/qrcode/lv_example_qrcode_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/rlottie/lv_example_rlottie_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exam [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/rlottie/lv_example_rlottie_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/rlottie/lv_example_rlottie_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exam [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/rlottie/lv_example_rlottie_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/rlottie/lv_example_rlottie_approve.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/rlottie/lv_example_rlottie_approve.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/svg/lv_example_svg_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/lib [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/svg/lv_example_svg_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/lv_example_tiny_ttf_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/lv_example_tiny_ttf_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/lv_example_tiny_ttf_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/tiny_ttf/lv_example_tiny_ttf_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/tiny_ttf/ubuntu_font.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/lib [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/tiny_ttf/ubuntu_font.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/libs/tjpgd/lv_example_tjpgd_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/libs/tjpgd/lv_example_tjpgd_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/file_explorer/lv_example_file_explorer_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/file_explorer/lv_example_file_explorer_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/file_explorer/lv_example_file_explorer_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/file_explorer/lv_example_file_explorer_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/file_explorer/lv_example_file_explorer_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/file_explorer/lv_example_file_explorer_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/font_manager/lv_example_font_manager_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/exte [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/font_manager/lv_example_font_manager_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/fragment/lv_example_fragment_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/fragment/lv_example_fragment_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/fragment/lv_example_fragment_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/fragment/lv_example_fragment_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/gestures/lv_example_gestures.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/gestures/lv_example_gestures.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/gridnav/lv_example_gridnav_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/gridnav/lv_example_gridnav_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/gridnav/lv_example_gridnav_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_4.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/gridnav/lv_example_gridnav_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/gridnav/lv_example_gridnav_5.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/gridnav/lv_example_gridnav_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/ime/lv_example_ime_pinyin_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/ime/lv_example_ime_pinyin_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/ime/lv_example_ime_pinyin_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/ime/lv_example_ime_pinyin_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/imgfont/lv_example_imgfont_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/imgfont/lv_example_imgfont_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/monkey/lv_example_monkey_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exam [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/monkey/lv_example_monkey_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/monkey/lv_example_monkey_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exam [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/monkey/lv_example_monkey_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/monkey/lv_example_monkey_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exam [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/monkey/lv_example_monkey_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/observer/lv_example_observer_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/observer/lv_example_observer_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/observer/lv_example_observer_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_4.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/observer/lv_example_observer_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_5.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/observer/lv_example_observer_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/observer/lv_example_observer_6.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/observer/lv_example_observer_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/snapshot/lv_example_snapshot_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/snapshot/lv_example_snapshot_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/others/xml/lv_example_xml_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/o [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/others/xml/lv_example_xml_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_disp_template.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/porting/lv_port_disp_template.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_fs_template.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/p [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/porting/lv_port_fs_template.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_indev_template.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/porting/lv_port_indev_template.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/porting/lv_port_lcd_stm32_template.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/porting/lv_port_lcd_stm32_template.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/porting/osal/lv_example_osal.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/porting/osal/lv_example_osal.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sc [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/scroll/lv_example_scroll_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sc [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/scroll/lv_example_scroll_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sc [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/scroll/lv_example_scroll_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sc [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/scroll/lv_example_scroll_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sc [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/scroll/lv_example_scroll_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sc [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/scroll/lv_example_scroll_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/scroll/lv_example_scroll_7.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sc [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/scroll/lv_example_scroll_7.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_10.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_10.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_11.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_11.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_12.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_12.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_13.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_13.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_14.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_14.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_15.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_15.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_16.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_16.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_17.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_17.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_18.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/st [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_18.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_7.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_7.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/styles/lv_example_style_9.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/sty [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/styles/lv_example_style_9.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/animimg/lv_example_animimg_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/animimg/lv_example_animimg_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/arc/lv_example_arc_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/arc/lv_example_arc_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/arc/lv_example_arc_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/arc/lv_example_arc_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/bar/lv_example_bar_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/bar/lv_example_bar_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/bar/lv_example_bar_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/bar/lv_example_bar_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/bar/lv_example_bar_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/bar/lv_example_bar_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/bar/lv_example_bar_7.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/bar/lv_example_bar_7.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/button/lv_example_button_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/button/lv_example_button_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/button/lv_example_button_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/button/lv_example_button_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/button/lv_example_button_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/button/lv_example_button_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/buttonmatrix/lv_example_buttonmatrix_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/ext [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/buttonmatrix/lv_example_buttonmatrix_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/ext [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/buttonmatrix/lv_example_buttonmatrix_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/ext [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/buttonmatrix/lv_example_buttonmatrix_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/calendar/lv_example_calendar_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/calendar/lv_example_calendar_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/calendar/lv_example_calendar_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/calendar/lv_example_calendar_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_7.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_7.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/canvas/lv_example_canvas_8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/canvas/lv_example_canvas_8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_7.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_7.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/chart/lv_example_chart_8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/chart/lv_example_chart_8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/checkbox/lv_example_checkbox_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/checkbox/lv_example_checkbox_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/checkbox/lv_example_checkbox_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/checkbox/lv_example_checkbox_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/dropdown/lv_example_dropdown_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/dropdown/lv_example_dropdown_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/dropdown/lv_example_dropdown_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/dropdown/lv_example_dropdown_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/dropdown/lv_example_dropdown_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/dropdown/lv_example_dropdown_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/image/lv_example_image_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/image/lv_example_image_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/image/lv_example_image_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/image/lv_example_image_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/image/lv_example_image_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/imagebutton/lv_example_imagebutton_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/exter [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/imagebutton/lv_example_imagebutton_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/keyboard/lv_example_keyboard_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/keyboard/lv_example_keyboard_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/keyboard/lv_example_keyboard_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/keyboard/lv_example_keyboard_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/label/lv_example_label_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/label/lv_example_label_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/label/lv_example_label_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/label/lv_example_label_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/label/lv_example_label_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/label/lv_example_label_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/led/lv_example_led_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/led/lv_example_led_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/line/lv_example_line_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/line/lv_example_line_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/list/lv_example_list_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/list/lv_example_list_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/list/lv_example_list_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/list/lv_example_list_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/lottie/lv_example_lottie_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/lottie/lv_example_lottie_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/lottie/lv_example_lottie_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/lottie/lv_example_lottie_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/lottie/lv_example_lottie_approve.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lv [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/lottie/lv_example_lottie_approve.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/menu/lv_example_menu_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/menu/lv_example_menu_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/menu/lv_example_menu_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/menu/lv_example_menu_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/menu/lv_example_menu_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/menu/lv_example_menu_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/msgbox/lv_example_msgbox_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/msgbox/lv_example_msgbox_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/msgbox/lv_example_msgbox_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/msgbox/lv_example_msgbox_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/obj/lv_example_obj_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/obj/lv_example_obj_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/obj/lv_example_obj_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/obj/lv_example_obj_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/obj/lv_example_obj_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/obj/lv_example_obj_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/roller/lv_example_roller_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/roller/lv_example_roller_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/roller/lv_example_roller_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/roller/lv_example_roller_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/roller/lv_example_roller_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/roller/lv_example_roller_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_5.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_6.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_7.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_7.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/scale/lv_example_scale_9.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/scale/lv_example_scale_9.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/slider/lv_example_slider_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/slider/lv_example_slider_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/slider/lv_example_slider_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/slider/lv_example_slider_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/slider/lv_example_slider_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/span/lv_example_span_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/example [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/span/lv_example_span_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/spinbox/lv_example_spinbox_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/spinbox/lv_example_spinbox_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/spinner/lv_example_spinner_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/spinner/lv_example_spinner_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/switch/lv_example_switch_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/switch/lv_example_switch_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/switch/lv_example_switch_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/exa [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/switch/lv_example_switch_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/table/lv_example_table_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/table/lv_example_table_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/table/lv_example_table_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examp [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/table/lv_example_table_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/tabview/lv_example_tabview_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/tabview/lv_example_tabview_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/tabview/lv_example_tabview_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/tabview/lv_example_tabview_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/textarea/lv_example_textarea_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/textarea/lv_example_textarea_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/textarea/lv_example_textarea_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/textarea/lv_example_textarea_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/textarea/lv_example_textarea_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/textarea/lv_example_textarea_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/tileview/lv_example_tileview_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/tileview/lv_example_tileview_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_examples.dir/examples/widgets/win/lv_example_win_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples/widgets/win/lv_example_win_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/img_benchmark_avatar.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ben [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/assets/img_benchmark_avatar.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/img_benchmark_lvgl_logo_argb.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/assets/img_benchmark_lvgl_logo_argb.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/img_benchmark_lvgl_logo_rgb.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/de [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/assets/img_benchmark_lvgl_logo_rgb.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_12_compr_az.c.c.o
-c /home/cash2ecash/Documents/cash2ecash/src [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_12_compr_az.c.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_16_compr_az.c.c.o
-c /home/cash2ecash/Documents/cash2ecash/src [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_16_compr_az.c.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/benchmark/assets/lv_font_benchmark_montserrat_28_compr_az.c.c.o
-c /home/cash2ecash/Documents/cash2ecash/src [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/assets/lv_font_benchmark_montserrat_28_compr_az.c.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/benchmark/lv_demo_benchmark.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/lv_ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/benchmark/lv_demo_benchmark.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_130.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/gene [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_130.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_56.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/gener [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_56.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_inter_14.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_inter_14.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_inter_20.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_inter_20.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_trump_24.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_trump_24.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_trump_40.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_trump_40.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_trump_48.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_trump_48.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/font_ebike_trump_72.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/font_ebike_trump_72.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_arrow_left.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebik [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_arrow_left.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_arrow_left_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/eb [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_arrow_left_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_arrow_right.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_arrow_right.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_arrow_right_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_arrow_right_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_bg.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/genera [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_bg.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_bg_large.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_bg_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_clock.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/gen [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_clock.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_dropdown_icon.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/e [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_dropdown_icon.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_home.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/gene [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_home.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_lamp.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/gene [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_lamp.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_scale.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/gen [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_scale.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_scale_large.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_scale_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_settings.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_settings.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_settings_large.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_settings_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_stats.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/gen [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_stats.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_stats_large.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_stats_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/img_ebike_whether.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/g [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/img_ebike_whether.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/lottie_ebike_settings.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/lottie_ebike_settings.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/generated/lottie_ebike_stats.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/generated/lottie_ebike_stats.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/lv_demo_ebike.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_demo_ebike.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_demo_ebike.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/lv_demo_ebike_home.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_demo_eb
[...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_demo_ebike_home.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/lv_demo_ebike_settings.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_demo_ebike_settings.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/lv_demo_ebike_stats.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_demo_e
[...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/lv_demo_ebike_stats.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/ebike/translations/lv_i18n.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/translat [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ebike/translations/lv_i18n.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/flex_layout/lv_demo_flex_layout_ctrl_pad.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex_layout/lv_demo_flex_layout_ctrl_pad.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/flex_layout/lv_demo_flex_layout_flex_loader.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex_layout/lv_demo_flex_layout_flex_loader.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/flex_layout/lv_demo_flex_layout_main.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex_layout/lv_demo_flex_layout_main.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/flex_layout/lv_demo_flex_layout_view.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex_layout/lv_demo_flex_layout_view.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/flex_layout/lv_demo_flex_layout_view_child_node.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex_layout/lv_demo_flex_layout_view_child_node.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/flex_layout/lv_demo_flex_layout_view_ctrl_pad.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/flex_layout/lv_demo_flex_layout_view_ctrl_pad.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/keypad_encoder/lv_demo_keypad_encoder.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/key [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/keypad_encoder/lv_demo_keypad_encoder.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/lv_demos.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/lv_demos.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/lv_demos.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_1.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_10.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_10.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_11.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_11.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_12.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_12.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_13.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_13.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_14.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_14.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_15.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_15.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_16.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_16.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_17.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_17.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_18.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_18.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_19.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_19.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_2.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_22.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_22.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_25.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_25.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_3.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_4.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_5.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_5.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_6.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_6.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_7.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_7.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_8.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/avatars/img_multilang_avatar_9.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/avatars/img_multilang_avatar_9.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_artist_palette.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_artist_palette.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_books.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/m [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_books.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_camera_with_flash.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_camera_with_flash.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_cat_face.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demo [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_cat_face.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_deciduous_tree.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_deciduous_tree.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_dog_face.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demo [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_dog_face.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_earth_globe_europe_africa.c.o
-c /home/cash2ecash/Documents/cash2ecash/src [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_earth_globe_europe_africa.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_flexed_biceps.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_flexed_biceps.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_movie_camera.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_movie_camera.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_red_heart.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_red_heart.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_rocket.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_rocket.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/emojis/img_emoji_soccer_ball.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/emojis/img_emoji_soccer_ball.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/fonts/font_multilang_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/fonts/font_multilang_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/fonts/font_multilang_small.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/fonts/font_multilang_small.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/assets/img_multilang_like.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/assets/img_multilang_like.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/multilang/lv_demo_multilang.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/lv_ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/multilang/lv_demo_multilang.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_corner_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_corner_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_pause.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_pause_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_play.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/de [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_list_play.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_list_play_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/l [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_list_play_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_loop.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/m [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_loop.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_loop_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_loop_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_next.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/m [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_next.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_next_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_next_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_pause.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_pause.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_pause_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_pause_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_play.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/m [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_play.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_play_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_play_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_prev.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/m [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_prev.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_prev_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_prev_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_rnd.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mu [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_rnd.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_btn_rnd_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/de [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_btn_rnd_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_left.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demo [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_corner_left.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_left_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_corner_left_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_right.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_corner_right.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_corner_right_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lv [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_corner_right_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mu [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_cover_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_1_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/de [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_cover_1_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mu [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_cover_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_2_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/de [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_cover_2_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mu [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_cover_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_cover_3_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/de [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_cover_3_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mus [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_1_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_1_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_2.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mus [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_2.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_2_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_2_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_3.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mus [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_3.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_3_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_3_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_4.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/mus [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_4.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_icon_4_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_icon_4_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_list_border.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demo [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_list_border.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_list_border_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_list_border_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_logo.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_logo.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_slider_knob.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demo [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_slider_knob.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_slider_knob_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_slider_knob_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_bottom.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demo [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_wave_bottom.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_bottom_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvg [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_wave_bottom_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_top.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/m [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_wave_top.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/assets/img_lv_demo_music_wave_top_large.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/d [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/assets/img_lv_demo_music_wave_top_large.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/lv_demo_music.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/lv_demo_music.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/lv_demo_music.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/lv_demo_music_list.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/lv_demo_mu
[...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/lv_demo_music_list.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/music/lv_demo_music_main.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/lv_demo_mu
[...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/music/lv_demo_music_main.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_arc_bg.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/as [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_arc_bg.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_argb8888.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_lvgl_logo_argb8888.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_i1.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ren [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_lvgl_logo_i1.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_l8.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ren [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_lvgl_logo_l8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_rgb565.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_lvgl_logo_rgb565.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_rgb565a8.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_lvgl_logo_rgb565a8.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_rgb888.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_lvgl_logo_rgb888.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/assets/img_render_lvgl_logo_xrgb8888.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/dem [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/assets/img_render_lvgl_logo_xrgb8888.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/render/lv_demo_render.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/lv_demo_render.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/render/lv_demo_render.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/scroll/lv_demo_scroll.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/scroll/lv_demo_scroll.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/scroll/lv_demo_scroll.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/stress/lv_demo_stress.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/stress/lv_demo_stress.c",
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/stress/lv_demo_stress.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/transform/assets/img_transform_avatar_15.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/transform/assets/img_transform_avatar_15.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/transform/lv_demo_transform.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/transform/lv_ [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/transform/lv_demo_transform.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/vector_graphic/assets/img_demo_vector_avatar.c.o
-c /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/de [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/vector_graphic/assets/img_demo_vector_avatar.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/vector_graphic/lv_demo_vector_graphic.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/vec [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/vector_graphic/lv_demo_vector_graphic.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_clothes.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/assets [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/assets/img_clothes.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_demo_widgets_avatar.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/wi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/assets/img_demo_widgets_avatar.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_demo_widgets_needle.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/wi [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/assets/img_demo_widgets_needle.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/widgets/assets/img_lvgl_logo.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/asse [...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/assets/img_lvgl_logo.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl",
+ "command": "/usr/bin/cc -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -g -std=gnu99 -o
CMakeFiles/lvgl_demos.dir/demos/widgets/lv_demo_widgets.c.o -c
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/lv_demo_w
[...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos/widgets/lv_demo_widgets.c"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/gui",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg -g -o
[...]
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/gui/gui.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/gui",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg -g -o
[...]
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/gui/screen.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/gui",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg -g -o
[...]
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/gui/screenWelcome.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/gui",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg -g -o
[...]
+ "file":
"/home/cash2ecash/Documents/cash2ecash/src/gui/screenIdentification.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/gui",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg -g -o
[...]
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/gui/screenConnection.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/gui",
+ "command": "/usr/bin/c++ -DLV_CONF_INCLUDE_SIMPLE -DLV_LVGL_H_INCLUDE_SIMPLE
-I/home/cash2ecash/Documents/cash2ecash/src/include
-I/home/cash2ecash/Documents/cash2ecash/src/extern -I/usr/include/libdrm
-isystem /home/cash2ecash/Documents/cash2ecash/src/extern/lvgl -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/examples -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/demos -isystem
/home/cash2ecash/Documents/cash2ecash/src/extern/lvgl/src/libs/thorvg -g -o
[...]
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/gui/screenAcceptCash.cpp"
+},
+{
+ "directory": "/home/cash2ecash/Documents/cash2ecash/src/utils",
+ "command": "/usr/bin/c++
-I/home/cash2ecash/Documents/cash2ecash/src/include -g -o
CMakeFiles/utils.dir/timer.cpp.o -c
/home/cash2ecash/Documents/cash2ecash/src/utils/timer.cpp",
+ "file": "/home/cash2ecash/Documents/cash2ecash/src/utils/timer.cpp"
+}
+]
\ No newline at end of file
diff --git a/build/extern/Makefile b/src/extern/Makefile
similarity index 77%
copy from build/extern/Makefile
copy to src/extern/Makefile
index 09f577b..11f482f 100644
--- a/build/extern/Makefile
+++ b/src/extern/Makefile
@@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/src
+CMAKE_SOURCE_DIR = /home/cash2ecash/Documents/cash2ecash/src
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build
+CMAKE_BINARY_DIR = /home/cash2ecash/Documents/cash2ecash/src
#=============================================================================
# Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
# The main all target
all: cmake_check_build_system
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/extern//CMakeFiles/progress.marks
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/all
- $(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND) -E
cmake_progress_start /home/cash2ecash/Documents/cash2ecash/src/CMakeFiles
/home/cash2ecash/Documents/cash2ecash/src/extern//CMakeFiles/progress.marks
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 extern/all
+ $(CMAKE_COMMAND) -E cmake_progress_start
/home/cash2ecash/Documents/cash2ecash/src/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/clean
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 extern/clean
.PHONY : clean
# The main clean target
@@ -148,17 +148,17 @@ clean/fast: clean
# Prepare targets for installation.
preinstall: all
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 extern/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 extern/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 1
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Help Target
@@ -184,6 +184,6 @@ help:
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
diff --git a/build/gui/Makefile b/src/gui/Makefile
similarity index 63%
copy from build/gui/Makefile
copy to src/gui/Makefile
index 5574413..4f34ada 100644
--- a/build/gui/Makefile
+++ b/src/gui/Makefile
@@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/src
+CMAKE_SOURCE_DIR = /home/cash2ecash/Documents/cash2ecash/src
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build
+CMAKE_BINARY_DIR = /home/cash2ecash/Documents/cash2ecash/src
#=============================================================================
# Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
# The main all target
all: cmake_check_build_system
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/gui//CMakeFiles/progress.marks
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gui/all
- $(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND) -E
cmake_progress_start /home/cash2ecash/Documents/cash2ecash/src/CMakeFiles
/home/cash2ecash/Documents/cash2ecash/src/gui//CMakeFiles/progress.marks
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 gui/all
+ $(CMAKE_COMMAND) -E cmake_progress_start
/home/cash2ecash/Documents/cash2ecash/src/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gui/clean
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 gui/clean
.PHONY : clean
# The main clean target
@@ -148,22 +148,22 @@ clean/fast: clean
# Prepare targets for installation.
preinstall: all
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gui/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 gui/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gui/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 gui/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 1
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
gui/CMakeFiles/gui.dir/rule:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gui/CMakeFiles/gui.dir/rule
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 gui/CMakeFiles/gui.dir/rule
.PHONY : gui/CMakeFiles/gui.dir/rule
# Convenience name for target.
@@ -172,7 +172,7 @@ gui: gui/CMakeFiles/gui.dir/rule
# fast build rule for target.
gui/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/build
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/build
.PHONY : gui/fast
gui.o: gui.cpp.o
@@ -180,7 +180,7 @@ gui.o: gui.cpp.o
# target to build an object file
gui.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/gui.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/gui.cpp.o
.PHONY : gui.cpp.o
gui.i: gui.cpp.i
@@ -188,7 +188,7 @@ gui.i: gui.cpp.i
# target to preprocess a source file
gui.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/gui.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/gui.cpp.i
.PHONY : gui.cpp.i
gui.s: gui.cpp.s
@@ -196,7 +196,7 @@ gui.s: gui.cpp.s
# target to generate assembly for a file
gui.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/gui.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/gui.cpp.s
.PHONY : gui.cpp.s
screen.o: screen.cpp.o
@@ -204,7 +204,7 @@ screen.o: screen.cpp.o
# target to build an object file
screen.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screen.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/screen.cpp.o
.PHONY : screen.cpp.o
screen.i: screen.cpp.i
@@ -212,7 +212,7 @@ screen.i: screen.cpp.i
# target to preprocess a source file
screen.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screen.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/screen.cpp.i
.PHONY : screen.cpp.i
screen.s: screen.cpp.s
@@ -220,7 +220,7 @@ screen.s: screen.cpp.s
# target to generate assembly for a file
screen.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screen.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/screen.cpp.s
.PHONY : screen.cpp.s
screenAcceptCash.o: screenAcceptCash.cpp.o
@@ -228,7 +228,7 @@ screenAcceptCash.o: screenAcceptCash.cpp.o
# target to build an object file
screenAcceptCash.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenAcceptCash.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenAcceptCash.cpp.o
.PHONY : screenAcceptCash.cpp.o
screenAcceptCash.i: screenAcceptCash.cpp.i
@@ -236,7 +236,7 @@ screenAcceptCash.i: screenAcceptCash.cpp.i
# target to preprocess a source file
screenAcceptCash.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenAcceptCash.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenAcceptCash.cpp.i
.PHONY : screenAcceptCash.cpp.i
screenAcceptCash.s: screenAcceptCash.cpp.s
@@ -244,7 +244,7 @@ screenAcceptCash.s: screenAcceptCash.cpp.s
# target to generate assembly for a file
screenAcceptCash.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenAcceptCash.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenAcceptCash.cpp.s
.PHONY : screenAcceptCash.cpp.s
screenConnection.o: screenConnection.cpp.o
@@ -252,7 +252,7 @@ screenConnection.o: screenConnection.cpp.o
# target to build an object file
screenConnection.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenConnection.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenConnection.cpp.o
.PHONY : screenConnection.cpp.o
screenConnection.i: screenConnection.cpp.i
@@ -260,7 +260,7 @@ screenConnection.i: screenConnection.cpp.i
# target to preprocess a source file
screenConnection.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenConnection.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenConnection.cpp.i
.PHONY : screenConnection.cpp.i
screenConnection.s: screenConnection.cpp.s
@@ -268,7 +268,7 @@ screenConnection.s: screenConnection.cpp.s
# target to generate assembly for a file
screenConnection.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenConnection.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenConnection.cpp.s
.PHONY : screenConnection.cpp.s
screenIdentification.o: screenIdentification.cpp.o
@@ -276,7 +276,7 @@ screenIdentification.o: screenIdentification.cpp.o
# target to build an object file
screenIdentification.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenIdentification.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenIdentification.cpp.o
.PHONY : screenIdentification.cpp.o
screenIdentification.i: screenIdentification.cpp.i
@@ -284,7 +284,7 @@ screenIdentification.i: screenIdentification.cpp.i
# target to preprocess a source file
screenIdentification.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenIdentification.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenIdentification.cpp.i
.PHONY : screenIdentification.cpp.i
screenIdentification.s: screenIdentification.cpp.s
@@ -292,7 +292,7 @@ screenIdentification.s: screenIdentification.cpp.s
# target to generate assembly for a file
screenIdentification.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenIdentification.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenIdentification.cpp.s
.PHONY : screenIdentification.cpp.s
screenWelcome.o: screenWelcome.cpp.o
@@ -300,7 +300,7 @@ screenWelcome.o: screenWelcome.cpp.o
# target to build an object file
screenWelcome.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenWelcome.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/screenWelcome.cpp.o
.PHONY : screenWelcome.cpp.o
screenWelcome.i: screenWelcome.cpp.i
@@ -308,7 +308,7 @@ screenWelcome.i: screenWelcome.cpp.i
# target to preprocess a source file
screenWelcome.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenWelcome.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/screenWelcome.cpp.i
.PHONY : screenWelcome.cpp.i
screenWelcome.s: screenWelcome.cpp.s
@@ -316,7 +316,7 @@ screenWelcome.s: screenWelcome.cpp.s
# target to generate assembly for a file
screenWelcome.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f gui/CMakeFiles/gui.dir/build.make
gui/CMakeFiles/gui.dir/screenWelcome.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f gui/CMakeFiles/gui.dir/build.make gui/CMakeFiles/gui.dir/screenWelcome.cpp.s
.PHONY : screenWelcome.cpp.s
# Help Target
@@ -361,6 +361,6 @@ help:
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
diff --git a/build/extern/Makefile b/src/identification/Makefile
similarity index 77%
copy from build/extern/Makefile
copy to src/identification/Makefile
index 09f577b..1da607a 100644
--- a/build/extern/Makefile
+++ b/src/identification/Makefile
@@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/src
+CMAKE_SOURCE_DIR = /home/cash2ecash/Documents/cash2ecash/src
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build
+CMAKE_BINARY_DIR = /home/cash2ecash/Documents/cash2ecash/src
#=============================================================================
# Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
# The main all target
all: cmake_check_build_system
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/extern//CMakeFiles/progress.marks
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/all
- $(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND) -E
cmake_progress_start /home/cash2ecash/Documents/cash2ecash/src/CMakeFiles
/home/cash2ecash/Documents/cash2ecash/src/identification//CMakeFiles/progress.marks
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 identification/all
+ $(CMAKE_COMMAND) -E cmake_progress_start
/home/cash2ecash/Documents/cash2ecash/src/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/clean
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 identification/clean
.PHONY : clean
# The main clean target
@@ -148,17 +148,17 @@ clean/fast: clean
# Prepare targets for installation.
preinstall: all
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 identification/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 extern/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 identification/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 1
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Help Target
@@ -184,6 +184,6 @@ help:
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
diff --git a/build/utils/Makefile b/src/utils/Makefile
similarity index 71%
copy from build/utils/Makefile
copy to src/utils/Makefile
index 9572505..7124d04 100644
--- a/build/utils/Makefile
+++ b/src/utils/Makefile
@@ -57,10 +57,10 @@ RM = /usr/bin/cmake -E rm -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/src
+CMAKE_SOURCE_DIR = /home/cash2ecash/Documents/cash2ecash/src
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR =
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build
+CMAKE_BINARY_DIR = /home/cash2ecash/Documents/cash2ecash/src
#=============================================================================
# Targets provided globally by CMake.
@@ -132,14 +132,14 @@ install/strip/fast: preinstall/fast
# The main all target
all: cmake_check_build_system
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/utils//CMakeFiles/progress.marks
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 utils/all
- $(CMAKE_COMMAND) -E cmake_progress_start
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build/CMakeFiles
0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND) -E
cmake_progress_start /home/cash2ecash/Documents/cash2ecash/src/CMakeFiles
/home/cash2ecash/Documents/cash2ecash/src/utils//CMakeFiles/progress.marks
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 utils/all
+ $(CMAKE_COMMAND) -E cmake_progress_start
/home/cash2ecash/Documents/cash2ecash/src/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 utils/clean
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 utils/clean
.PHONY : clean
# The main clean target
@@ -148,22 +148,22 @@ clean/fast: clean
# Prepare targets for installation.
preinstall: all
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 utils/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 utils/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 utils/preinstall
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 utils/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 1
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
utils/CMakeFiles/utils.dir/rule:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 utils/CMakeFiles/utils.dir/rule
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f CMakeFiles/Makefile2 utils/CMakeFiles/utils.dir/rule
.PHONY : utils/CMakeFiles/utils.dir/rule
# Convenience name for target.
@@ -172,7 +172,7 @@ utils: utils/CMakeFiles/utils.dir/rule
# fast build rule for target.
utils/fast:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f utils/CMakeFiles/utils.dir/build.make
utils/CMakeFiles/utils.dir/build
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f utils/CMakeFiles/utils.dir/build.make utils/CMakeFiles/utils.dir/build
.PHONY : utils/fast
timer.o: timer.cpp.o
@@ -180,7 +180,7 @@ timer.o: timer.cpp.o
# target to build an object file
timer.cpp.o:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f utils/CMakeFiles/utils.dir/build.make
utils/CMakeFiles/utils.dir/timer.cpp.o
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f utils/CMakeFiles/utils.dir/build.make utils/CMakeFiles/utils.dir/timer.cpp.o
.PHONY : timer.cpp.o
timer.i: timer.cpp.i
@@ -188,7 +188,7 @@ timer.i: timer.cpp.i
# target to preprocess a source file
timer.cpp.i:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f utils/CMakeFiles/utils.dir/build.make
utils/CMakeFiles/utils.dir/timer.cpp.i
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f utils/CMakeFiles/utils.dir/build.make utils/CMakeFiles/utils.dir/timer.cpp.i
.PHONY : timer.cpp.i
timer.s: timer.cpp.s
@@ -196,7 +196,7 @@ timer.s: timer.cpp.s
# target to generate assembly for a file
timer.cpp.s:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(MAKE) $(MAKESILENT) -f utils/CMakeFiles/utils.dir/build.make
utils/CMakeFiles/utils.dir/timer.cpp.s
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(MAKE) $(MAKESILENT)
-f utils/CMakeFiles/utils.dir/build.make utils/CMakeFiles/utils.dir/timer.cpp.s
.PHONY : timer.cpp.s
# Help Target
@@ -226,6 +226,6 @@ help:
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
- cd
/home/manuel/Dokumente/Studium/BTE5512_Projektarbeit/cash2ecash/build &&
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
--check-build-system CMakeFiles/Makefile.cmake 0
+ cd /home/cash2ecash/Documents/cash2ecash/src && $(CMAKE_COMMAND)
-S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system
CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [cash2ecash] branch master updated (08e28c6 -> 6351837),
gnunet <=