aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-devtools/codexl/codexl/0017-add-tinxml-to-list-of-LIBS-for-CapturePlayer.patch
blob: 977ac209f3fdedcb65b6eac2098c855e78e2319d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
From 711fcedf6a93e21408609eec74729be5106c149e Mon Sep 17 00:00:00 2001
From: Adeel Arshad <adeel_arshad@mentor.com>
Date: Wed, 2 Nov 2016 15:43:57 +0500
Subject: [PATCH] add tinxml to list of LIBS for CapturePlayer

Frame analyzer capture player uses the tinyxml,
so the tinyxml library needs to be added to the
list of the libraries on which CapturePlayer
build is dependent.

Signed-off-by: Adeel Arshad <adeel_arshad@mentor.com>
---
 CodeXL/Components/Graphics/Server/CapturePlayer/SConscript | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/CodeXL/Components/Graphics/Server/CapturePlayer/SConscript b/CodeXL/Components/Graphics/Server/CapturePlayer/SConscript
index f114c62..1c74794 100644
--- a/CodeXL/Components/Graphics/Server/CapturePlayer/SConscript
+++ b/CodeXL/Components/Graphics/Server/CapturePlayer/SConscript
@@ -67,7 +67,8 @@ env['LIBS'] = \
     "pthread",
     "dl",
     "X11",
-    "xcb"
+    "xcb",
+    "tinyxml"
 ]
 
 sources = [
-- 
1.9.1