~josharenson/+junk/unity8-dash-snap

« back to all changes in this revision

Viewing changes to src/Panel/Indicators/client/CMakeLists.txt

  • Committer: Josh Arenson
  • Date: 2016-10-27 15:48:22 UTC
  • Revision ID: joshua.arenson@canonical.com-20161027154822-da8qx2vep0gj2jdq
Cleanup src cmakelists

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(indicators_client)
 
2
 
 
3
set(INDICATORS_CLIENT_SRC
 
4
    main.cpp
 
5
    indicatorsclient.cpp
 
6
)
 
7
 
 
8
set(INDICATORS_CLIENT_HEADERS
 
9
    indicatorsclient.h
 
10
)
 
11
add_executable(${INDICATORS_CLIENT_APP}
 
12
    ${INDICATORS_CLIENT_SRC}
 
13
    ${INDICATORS_CLIENT_HEADERS}
 
14
)
 
15
 
 
16
qt5_use_modules(${INDICATORS_CLIENT_APP} Core Widgets Quick)
 
17
 
 
18
install(TARGETS ${INDICATORS_CLIENT_APP}
 
19
        RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})