~ps-jenkins/url-dispatcher/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/CMakeLists.txt

  • Committer: Tarmac
  • Author(s): Ted Gould
  • Date: 2013-10-08 16:43:27 UTC
  • mfrom: (21.2.25 app-id-url)
  • Revision ID: tarmac-20131008164327-jsgwi7va23roh2o1
Adds the appid:// URL format.

Approved by Loïc Minier, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
)
25
25
 
26
26
###########################
27
 
# App ID URL test
 
27
# Dispatcher test
28
28
###########################
29
29
 
30
30
include_directories("${CMAKE_SOURCE_DIR}/service")
38
38
 
39
39
add_test (dispatcher-test dispatcher-test)
40
40
 
 
41
###########################
 
42
# App ID URL test
 
43
###########################
 
44
 
 
45
add_definitions ( -DCMAKE_SOURCE_DIR="${CMAKE_CURRENT_SOURCE_DIR}" )
 
46
 
 
47
add_executable (app-id-test app-id-test.cc)
 
48
target_link_libraries (app-id-test
 
49
        dispatcher-lib
 
50
        mock-lib
 
51
        gtest
 
52
        ${GTEST_LIBS})
 
53
 
 
54
add_test (app-id-test app-id-test)
 
55