~larryprice/libertine-scope/more-blacklisting

« back to all changes in this revision

Viewing changes to tests/CMakeLists.txt

  • Committer: Larry Price
  • Date: 2016-04-18 16:37:49 UTC
  • mfrom: (31.1.12 fix-scope-icon)
  • Revision ID: larry.price@canonical.com-20160418163749-w3a8icvk03b1ho72
Redesign preview pane with reasonably-sized image, title, and description to closer match the store preview.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
add_executable(libertine_scope_tests
7
7
  fake_container.cpp
8
8
  fake_libertine.cpp
 
9
 
 
10
  # tests
9
11
  test_scope.cpp
 
12
  test_app_description.cpp
 
13
  test_preview.cpp
10
14
)
11
15
 
12
16
target_link_libraries(libertine_scope_tests
16
20
  gmock_main
17
21
)
18
22
 
19
 
add_test(test_scope
20
 
  libertine_scope_tests
21
 
)
 
23
add_test(test_scope libertine_scope_tests)
 
24
add_test(test_app_description libertine_scope_tests)
 
25
add_test(test_preview libertine_scope_tests)
 
26
 
 
27
execute_process(COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_SOURCE_DIR}/tests/data/ ${CMAKE_CURRENT_BINARY_DIR}/data)