~alan-griffiths/miral/debug

« back to all changes in this revision

Viewing changes to miral-qt/tests/mirserver/ArgvHelper/CMakeLists.txt

  • Committer: Gerry Boland
  • Date: 2016-06-01 22:06:51 UTC
  • mto: This revision was merged to the branch mainline in revision 178.
  • Revision ID: gerry.boland@canonical.com-20160601220651-ge508tffql4e7u7c
Import QtMir code into miral-qt subdirectory. Disabled by default, use -DMIRAL_ENABLE_QT=1 to build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(
 
2
  ARGVHELPER_TEST_SOURCES
 
3
  argvHelper_test.cpp
 
4
)
 
5
 
 
6
add_executable(ArgvHelperTest ${ARGVHELPER_TEST_SOURCES})
 
7
 
 
8
include_directories(
 
9
  ${MIRAL_QT_SOURCE_DIR}/src/platforms/mirserver
 
10
)
 
11
 
 
12
target_link_libraries(
 
13
  ArgvHelperTest
 
14
 
 
15
  ${GTEST_BOTH_LIBRARIES}
 
16
)
 
17
 
 
18
add_test(ArgvHelper, ArgvHelperTest)