~alan-griffiths/miral/g++-7

« back to all changes in this revision

Viewing changes to test/CMakeLists.txt

  • Committer: Alan Griffiths
  • Date: 2016-05-18 16:48:54 UTC
  • mto: (169.2.7 miral0) (174.1.1 miral)
  • mto: This revision was merged to the branch mainline in revision 175.
  • Revision ID: alan@octopull.co.uk-20160518164854-qe6l2005wj1d8k5o
Start of MRUWindowList

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
find_package(GtestGmock REQUIRED)
 
2
include_directories(${GMOCK_INCLUDE_DIR} ${GTEST_INCLUDE_DIR})
 
3
 
 
4
add_executable(miral-test
 
5
    mru_window_list.cpp
 
6
)
 
7
 
 
8
target_link_libraries(miral-test
 
9
    miral
 
10
    ${GTEST_BOTH_LIBRARIES}
 
11
    ${GMOCK_LIBRARY}
 
12
    ${GMOCK_MAIN_LIBRARY}
 
13
)