~ubuntu-branches/ubuntu/trusty/libusermetrics/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/unit/usermetricsservice/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Pete Woods, Ubuntu daily release
  • Date: 2013-07-02 02:02:52 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130702020252-53yuhnlabsq1cq8x
Tags: 1.0.1+13.10.20130702-0ubuntu1
[ Pete Woods ]
* Implement most of storage service and wire up input API.
* Wire up the output API to the storage service.

[ Ubuntu daily release ]
* Automatic snapshot from revision 80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
set(
 
3
        USERMETRICSSERVICE_UNIT_TESTS_SRC
 
4
        TestUserMetricsService.cpp
 
5
)
 
6
 
 
7
add_executable(
 
8
        usermetricsservice-unit-tests
 
9
        ${USERMETRICSSERVICE_UNIT_TESTS_SRC}
 
10
)
 
11
 
 
12
target_link_libraries(
 
13
        usermetricsservice-unit-tests
 
14
        usermetricsservice
 
15
        usermetrics-test-utils
 
16
        ${GTEST_LIBRARIES}
 
17
        ${GMOCK_LIBRARIES}
 
18
)
 
19
 
 
20
add_valgrind_test(
 
21
        usermetricsservice-unit-tests
 
22
        usermetricsservice-unit-tests
 
23
)