~ubuntu-branches/ubuntu/utopic/mir/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/integration-tests/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-03-10 19:28:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: package-import@ubuntu.com-20140310192846-rq9qm3ec26yrelo2
Tags: upstream-0.1.6+14.04.20140310
ImportĀ upstreamĀ versionĀ 0.1.6+14.04.20140310

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
add_subdirectory(process/)
23
23
add_subdirectory(input/)
24
24
 
25
 
if (MIR_PLATFORM STREQUAL "android")
 
25
if (MIR_TEST_PLATFORM STREQUAL "android")
26
26
  add_subdirectory(graphics/android)
27
27
endif()
28
28
 
29
 
if(MIR_PLATFORM STREQUAL "mesa")
 
29
if(MIR_TEST_PLATFORM STREQUAL "mesa")
30
30
  include_directories(
31
31
    ${DRM_INCLUDE_DIRS}
32
32
    ${GBM_INCLUDE_DIRS}
38
38
  list(APPEND INTEGRATION_TESTS_SRCS test_drm_auth_magic.cpp)
39
39
endif()
40
40
 
 
41
link_directories(${LIBRARY_OUTPUT_PATH})
41
42
add_executable(
42
43
  mir_integration_tests
43
44
  ${INTEGRATION_TESTS_SRCS})