Merge lp:~mandel/ubuntu-download-manager/second-reorg into lp:ubuntu-download-manager

Proposed by Manuel de la Peña
Status: Merged
Merged at revision: 279
Proposed branch: lp:~mandel/ubuntu-download-manager/second-reorg
Merge into: lp:ubuntu-download-manager
Prerequisite: lp:~mandel/ubuntu-download-manager/add-mng-class
Diff against target: 348 lines (+111/-43)
17 files modified
CMakeLists.txt (+1/-11)
src/CMakeLists.txt (+19/-0)
src/common/CMakeLists.txt (+18/-0)
src/common/priv/CMakeLists.txt (+1/-1)
src/downloads/CMakeLists.txt (+22/-0)
src/downloads/client/CMakeLists.txt (+2/-2)
src/downloads/common/CMakeLists.txt (+1/-1)
src/downloads/daemon/CMakeLists.txt (+4/-4)
src/downloads/priv/CMakeLists.txt (+3/-3)
src/downloads/qml/CMakeLists.txt (+3/-3)
src/downloads/test-daemon/CMakeLists.txt (+4/-4)
src/uploads/CMakeLists.txt (+19/-0)
src/uploads/common/CMakeLists.txt (+1/-1)
src/uploads/daemon/CMakeLists.txt (+4/-4)
src/uploads/priv/CMakeLists.txt (+3/-3)
tests/CMakeLists.txt (+5/-5)
tests/local_tree_testcase.cpp (+1/-1)
To merge this branch: bzr merge lp:~mandel/ubuntu-download-manager/second-reorg
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Ubuntu One hackers Pending
Review via email: mp+213478@code.launchpad.net

Commit message

Organize project simpler so that new developers find it easier to move arround the code.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
321. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
322. By Manuel de la Peña

Merged add-mng-class into second-reorg.

323. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
324. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
325. By Manuel de la Peña

Merged add-mng-class into second-reorg.

326. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
327. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
328. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
329. By Manuel de la Peña

Fix merge issue.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
330. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
331. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
332. By Manuel de la Peña

Merged add-mng-class into second-reorg.

333. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
334. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
335. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
336. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
337. By Manuel de la Peña

Merged add-mng-class into second-reorg.

338. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
339. By Manuel de la Peña

Merged add-mng-class into second-reorg.

340. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
341. By Manuel de la Peña

Merged add-mng-class into second-reorg.

342. By Manuel de la Peña

Merged add-mng-class into second-reorg.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2014-04-15 15:31:35 +0000
3+++ CMakeLists.txt 2014-04-15 15:31:36 +0000
4@@ -69,15 +69,5 @@
5 add_definitions(-DQT_NO_DEBUG)
6 endif()
7
8-add_subdirectory(udm-common)
9-add_subdirectory(udm-priv-common)
10-add_subdirectory(ubuntu-download-manager-common)
11-add_subdirectory(ubuntu-download-manager-priv)
12-add_subdirectory(ubuntu-download-manager)
13-add_subdirectory(ubuntu-download-manager-client)
14-add_subdirectory(ubuntu-download-manager-test-daemon)
15-add_subdirectory(ubuntu-download-manager-plugin)
16-add_subdirectory(ubuntu-upload-manager-common)
17-add_subdirectory(ubuntu-upload-manager-priv)
18-add_subdirectory(ubuntu-upload-manager)
19+add_subdirectory(src)
20 add_subdirectory(tests)
21
22=== added directory 'src'
23=== added file 'src/CMakeLists.txt'
24--- src/CMakeLists.txt 1970-01-01 00:00:00 +0000
25+++ src/CMakeLists.txt 2014-04-15 15:31:36 +0000
26@@ -0,0 +1,19 @@
27+# Copyright © 2013 Canonical Ltd.
28+#
29+# This program is free software: you can redistribute it and/or modify
30+# it under the terms of the GNU General Public License version 3 as
31+# published by the Free Software Foundation.
32+#
33+# This program is distributed in the hope that it will be useful,
34+# but WITHOUT ANY WARRANTY; without even the implied warranty of
35+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36+# GNU General Public License for more details.
37+#
38+# You should have received a copy of the GNU General Public License
39+# along with this program. If not, see <http://www.gnu.org/licenses/>.
40+#
41+# Authored by: Manuel de la Peña <manuel.delapena@canonical.com>
42+
43+add_subdirectory(common)
44+add_subdirectory(downloads)
45+add_subdirectory(uploads)
46
47=== added directory 'src/common'
48=== added file 'src/common/CMakeLists.txt'
49--- src/common/CMakeLists.txt 1970-01-01 00:00:00 +0000
50+++ src/common/CMakeLists.txt 2014-04-15 15:31:36 +0000
51@@ -0,0 +1,18 @@
52+# Copyright © 2013 Canonical Ltd.
53+#
54+# This program is free software: you can redistribute it and/or modify
55+# it under the terms of the GNU General Public License version 3 as
56+# published by the Free Software Foundation.
57+#
58+# This program is distributed in the hope that it will be useful,
59+# but WITHOUT ANY WARRANTY; without even the implied warranty of
60+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
61+# GNU General Public License for more details.
62+#
63+# You should have received a copy of the GNU General Public License
64+# along with this program. If not, see <http://www.gnu.org/licenses/>.
65+#
66+# Authored by: Manuel de la Peña <manuel.delapena@canonical.com>
67+
68+add_subdirectory(priv)
69+add_subdirectory(public)
70
71=== renamed directory 'udm-priv-common' => 'src/common/priv'
72=== modified file 'src/common/priv/CMakeLists.txt'
73--- udm-priv-common/CMakeLists.txt 2014-04-15 15:31:35 +0000
74+++ src/common/priv/CMakeLists.txt 2014-04-15 15:31:36 +0000
75@@ -53,9 +53,9 @@
76 include_directories(${Qt5Network_INCLUDE_DIRS})
77 include_directories(${Qt5Sql_INCLUDE_DIRS})
78 include_directories(${DBUS_INCLUDE_DIRS})
79-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
80 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
81 include_directories(${CMAKE_CURRENT_BINARY_DIR})
82+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
83
84 add_library(${TARGET} SHARED
85 ${HEADERS}
86
87=== renamed directory 'udm-common' => 'src/common/public'
88=== added directory 'src/downloads'
89=== added file 'src/downloads/CMakeLists.txt'
90--- src/downloads/CMakeLists.txt 1970-01-01 00:00:00 +0000
91+++ src/downloads/CMakeLists.txt 2014-04-15 15:31:36 +0000
92@@ -0,0 +1,22 @@
93+# Copyright © 2013 Canonical Ltd.
94+#
95+# This program is free software: you can redistribute it and/or modify
96+# it under the terms of the GNU General Public License version 3 as
97+# published by the Free Software Foundation.
98+#
99+# This program is distributed in the hope that it will be useful,
100+# but WITHOUT ANY WARRANTY; without even the implied warranty of
101+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
102+# GNU General Public License for more details.
103+#
104+# You should have received a copy of the GNU General Public License
105+# along with this program. If not, see <http://www.gnu.org/licenses/>.
106+#
107+# Authored by: Manuel de la Peña <manuel.delapena@canonical.com>
108+
109+add_subdirectory(client)
110+add_subdirectory(common)
111+add_subdirectory(daemon)
112+add_subdirectory(priv)
113+add_subdirectory(qml)
114+add_subdirectory(test-daemon)
115
116=== renamed directory 'ubuntu-download-manager-client' => 'src/downloads/client'
117=== modified file 'src/downloads/client/CMakeLists.txt'
118--- ubuntu-download-manager-client/CMakeLists.txt 2014-04-15 15:31:35 +0000
119+++ src/downloads/client/CMakeLists.txt 2014-04-15 15:31:36 +0000
120@@ -32,10 +32,10 @@
121
122 include_directories(${Qt5DBus_INCLUDE_DIRS})
123 include_directories(${Qt5Network_INCLUDE_DIRS})
124-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
125-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-common)
126 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
127 include_directories(${CMAKE_CURRENT_BINARY_DIR})
128+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
129+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/common)
130
131 add_library(${TARGET} SHARED
132 ${SOURCES}
133
134=== renamed directory 'ubuntu-download-manager-common' => 'src/downloads/common'
135=== modified file 'src/downloads/common/CMakeLists.txt'
136--- ubuntu-download-manager-common/CMakeLists.txt 2014-04-15 15:31:35 +0000
137+++ src/downloads/common/CMakeLists.txt 2014-04-15 15:31:36 +0000
138@@ -19,9 +19,9 @@
139
140 include_directories(${Qt5DBus_INCLUDE_DIRS})
141 include_directories(${Qt5Network_INCLUDE_DIRS})
142-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
143 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
144 include_directories(${CMAKE_CURRENT_BINARY_DIR})
145+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
146
147 add_library(${TARGET} SHARED
148 ${SOURCES}
149
150=== renamed directory 'ubuntu-download-manager' => 'src/downloads/daemon'
151=== modified file 'src/downloads/daemon/CMakeLists.txt'
152--- ubuntu-download-manager/CMakeLists.txt 2014-04-15 15:31:35 +0000
153+++ src/downloads/daemon/CMakeLists.txt 2014-04-15 15:31:36 +0000
154@@ -5,12 +5,12 @@
155 )
156
157 include_directories(${Qt5Core_INCLUDE_DIRS})
158-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
159-include_directories(${CMAKE_SOURCE_DIR}/udm-priv-common)
160-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-common)
161-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-priv)
162 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
163 include_directories(${CMAKE_CURRENT_BINARY_DIR})
164+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
165+include_directories(${CMAKE_SOURCE_DIR}/src/common/priv)
166+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/common)
167+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/priv)
168
169 link_directories(${NIH_DBUS_LIBDIR})
170 link_directories(${GLOG_DBUS_LIBDIR})
171
172=== renamed directory 'ubuntu-download-manager-priv' => 'src/downloads/priv'
173=== modified file 'src/downloads/priv/CMakeLists.txt'
174--- ubuntu-download-manager-priv/CMakeLists.txt 2014-04-15 15:31:35 +0000
175+++ src/downloads/priv/CMakeLists.txt 2014-04-15 15:31:36 +0000
176@@ -45,11 +45,11 @@
177 include_directories(${Qt5Network_INCLUDE_DIRS})
178 include_directories(${Qt5Sql_INCLUDE_DIRS})
179 include_directories(${DBUS_INCLUDE_DIRS})
180-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
181-include_directories(${CMAKE_SOURCE_DIR}/udm-priv-common)
182-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-common)
183 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
184 include_directories(${CMAKE_CURRENT_BINARY_DIR})
185+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
186+include_directories(${CMAKE_SOURCE_DIR}/src/common/priv)
187+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/common)
188
189 add_library(${TARGET} STATIC
190 ${HEADERS}
191
192=== renamed directory 'ubuntu-download-manager-plugin' => 'src/downloads/qml'
193=== modified file 'src/downloads/qml/CMakeLists.txt'
194--- ubuntu-download-manager-plugin/CMakeLists.txt 2014-04-15 15:31:35 +0000
195+++ src/downloads/qml/CMakeLists.txt 2014-04-15 15:31:36 +0000
196@@ -15,9 +15,9 @@
197 single_download.h
198 )
199
200-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
201-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-common)
202-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-client)
203+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
204+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/common)
205+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/client)
206 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
207 include_directories(${CMAKE_CURRENT_BINARY_DIR})
208
209
210=== renamed directory 'ubuntu-download-manager-test-daemon' => 'src/downloads/test-daemon'
211=== modified file 'src/downloads/test-daemon/CMakeLists.txt'
212--- ubuntu-download-manager-test-daemon/CMakeLists.txt 2014-04-15 15:31:35 +0000
213+++ src/downloads/test-daemon/CMakeLists.txt 2014-04-15 15:31:36 +0000
214@@ -22,12 +22,12 @@
215 include_directories(${Qt5Network_INCLUDE_DIRS})
216 include_directories(${Qt5Sql_INCLUDE_DIRS})
217 include_directories(${Qt5SystemInfo_INCLUDE_DIRS})
218-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
219-include_directories(${CMAKE_SOURCE_DIR}/udm-priv-common)
220-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-common)
221-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-priv)
222 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
223 include_directories(${CMAKE_CURRENT_BINARY_DIR})
224+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
225+include_directories(${CMAKE_SOURCE_DIR}/src/common/priv)
226+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/common)
227+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/priv)
228
229 link_directories(${NIH_DBUS_LIBDIR})
230 link_directories(${GLOG_DBUS_LIBDIR})
231
232=== added directory 'src/uploads'
233=== added file 'src/uploads/CMakeLists.txt'
234--- src/uploads/CMakeLists.txt 1970-01-01 00:00:00 +0000
235+++ src/uploads/CMakeLists.txt 2014-04-15 15:31:36 +0000
236@@ -0,0 +1,19 @@
237+# Copyright © 2013 Canonical Ltd.
238+#
239+# This program is free software: you can redistribute it and/or modify
240+# it under the terms of the GNU General Public License version 3 as
241+# published by the Free Software Foundation.
242+#
243+# This program is distributed in the hope that it will be useful,
244+# but WITHOUT ANY WARRANTY; without even the implied warranty of
245+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
246+# GNU General Public License for more details.
247+#
248+# You should have received a copy of the GNU General Public License
249+# along with this program. If not, see <http://www.gnu.org/licenses/>.
250+#
251+# Authored by: Manuel de la Peña <manuel.delapena@canonical.com>
252+
253+add_subdirectory(common)
254+add_subdirectory(daemon)
255+add_subdirectory(priv)
256
257=== renamed directory 'ubuntu-upload-manager-common' => 'src/uploads/common'
258=== modified file 'src/uploads/common/CMakeLists.txt'
259--- ubuntu-upload-manager-common/CMakeLists.txt 2014-04-15 15:31:35 +0000
260+++ src/uploads/common/CMakeLists.txt 2014-04-15 15:31:36 +0000
261@@ -15,9 +15,9 @@
262
263 include_directories(${Qt5DBus_INCLUDE_DIRS})
264 include_directories(${Qt5Network_INCLUDE_DIRS})
265-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
266 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
267 include_directories(${CMAKE_CURRENT_BINARY_DIR})
268+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
269
270 add_library(${TARGET} SHARED
271 ${SOURCES}
272
273=== renamed directory 'ubuntu-upload-manager' => 'src/uploads/daemon'
274=== modified file 'src/uploads/daemon/CMakeLists.txt'
275--- ubuntu-upload-manager/CMakeLists.txt 2014-04-15 15:31:35 +0000
276+++ src/uploads/daemon/CMakeLists.txt 2014-04-15 15:31:36 +0000
277@@ -5,12 +5,12 @@
278 )
279
280 include_directories(${Qt5Core_INCLUDE_DIRS})
281-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
282-include_directories(${CMAKE_SOURCE_DIR}/udm-priv-common)
283-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-upload-manager-common)
284-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-upload-manager-priv)
285 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
286 include_directories(${CMAKE_CURRENT_BINARY_DIR})
287+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
288+include_directories(${CMAKE_SOURCE_DIR}/src/common/priv)
289+include_directories(${CMAKE_SOURCE_DIR}/src/uploads/common)
290+include_directories(${CMAKE_SOURCE_DIR}/src/uploads/priv)
291
292 link_directories(${NIH_DBUS_LIBDIR})
293 link_directories(${GLOG_DBUS_LIBDIR})
294
295=== renamed directory 'ubuntu-upload-manager-priv' => 'src/uploads/priv'
296=== modified file 'src/uploads/priv/CMakeLists.txt'
297--- ubuntu-upload-manager-priv/CMakeLists.txt 2014-04-15 15:31:35 +0000
298+++ src/uploads/priv/CMakeLists.txt 2014-04-15 15:31:36 +0000
299@@ -31,11 +31,11 @@
300 include_directories(${Qt5Network_INCLUDE_DIRS})
301 include_directories(${Qt5Sql_INCLUDE_DIRS})
302 include_directories(${DBUS_INCLUDE_DIRS})
303-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
304-include_directories(${CMAKE_SOURCE_DIR}/udm-priv-common)
305-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-upload-manager-common)
306 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
307 include_directories(${CMAKE_CURRENT_BINARY_DIR})
308+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
309+include_directories(${CMAKE_SOURCE_DIR}/src/common/priv)
310+include_directories(${CMAKE_SOURCE_DIR}/src/uploads/common)
311
312 add_library(${TARGET} STATIC
313 ${HEADERS}
314
315=== modified file 'tests/CMakeLists.txt'
316--- tests/CMakeLists.txt 2014-04-15 15:31:35 +0000
317+++ tests/CMakeLists.txt 2014-04-15 15:31:36 +0000
318@@ -92,13 +92,13 @@
319 include_directories(${DBUS_INCLUDE_DIRS})
320 include_directories(${GTEST_INCLUDE_DIRS})
321 include_directories(${GMOCK_INCLUDE_DIRS})
322-include_directories(${CMAKE_SOURCE_DIR}/udm-common)
323-include_directories(${CMAKE_SOURCE_DIR}/udm-priv-common)
324-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-common)
325-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-client)
326-include_directories(${CMAKE_SOURCE_DIR}/ubuntu-download-manager-priv)
327 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
328 include_directories(${CMAKE_CURRENT_BINARY_DIR})
329+include_directories(${CMAKE_SOURCE_DIR}/src/common/public)
330+include_directories(${CMAKE_SOURCE_DIR}/src/common/priv)
331+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/common)
332+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/client)
333+include_directories(${CMAKE_SOURCE_DIR}/src/downloads/priv)
334
335 link_directories(${NIH_DBUS_LIBDIR})
336 link_directories(${GLOG_DBUS_LIBDIR})
337
338=== modified file 'tests/local_tree_testcase.cpp'
339--- tests/local_tree_testcase.cpp 2014-01-24 11:24:40 +0000
340+++ tests/local_tree_testcase.cpp 2014-04-15 15:31:36 +0000
341@@ -17,7 +17,7 @@
342 */
343
344 #include "local_tree_testcase.h"
345-#define TEST_DAEMON "../ubuntu-download-manager-test-daemon/ubuntu-download-manager-test-daemon"
346+#define TEST_DAEMON "../src/downloads/test-daemon/ubuntu-download-manager-test-daemon"
347 #define LARGE_FILE "otasigned.zip"
348 #define SMALL_FILE "index.json"
349

Subscribers

People subscribed via source and target branches