~agateau/unity-2d/edge-reveal

« back to all changes in this revision

Viewing changes to panel/app/CMakeLists.txt

  • Committer: Aurelien Gateau
  • Date: 2010-10-06 13:52:55 UTC
  • Revision ID: aurelien.gateau@canonical.com-20101006135255-j4gsdm7k3grh0ydh
MergedĀ inĀ panel

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set(panel_SRCS
 
2
    main.cpp
 
3
    )
 
4
 
 
5
qt4_automoc(${panel_SRCS})
 
6
add_executable(unity-qt-panel ${panel_SRCS})
 
7
 
 
8
include_directories(
 
9
    ${CMAKE_CURRENT_BINARY_DIR}
 
10
    )
 
11
 
 
12
target_link_libraries(unity-qt-panel
 
13
    ${QT_QTGUI_LIBRARIES}
 
14
    ${QT_QTCORE_LIBRARIES}
 
15
    unity-qt-gui
 
16
    )
 
17
 
 
18
install(TARGETS unity-qt-panel
 
19
    RUNTIME DESTINATION bin
 
20
    )