~stolowski/+junk/unity-2d-no-results-hint

« back to all changes in this revision

Viewing changes to launcher/CMakeLists.txt

  • Committer: Aurelien Gateau
  • Date: 2010-10-06 13:08:02 UTC
  • Revision ID: aurelien.gateau@canonical.com-20101006130802-csj3mlb3iw41bsnt
Moved all unity-qt-launcher code to a launcher/ dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
project(unity-qt-launcher)
2
2
 
3
 
cmake_minimum_required(VERSION 2.8)
4
 
 
5
 
# Dirs
6
 
set(UNITY_QT_DIR share/unity-qt)
7
 
set(AUTOSTART_DIR share/autostart CACHE PATH "The directory where autostart files should be installed")
8
 
 
9
 
# Dependencies
10
 
include(FindPkgConfig)
11
 
find_package(Qt4 REQUIRED)
12
 
 
13
3
# Source
14
4
add_subdirectory(UnityApplications)
15
5
add_subdirectory(app)
16
6
 
17
7
file(GLOB launcher_QML *.qml)
18
8
 
19
 
configure_file(config.h.in config.h)
20
 
 
21
9
# Install
22
10
install(FILES ${launcher_QML}
23
11
    DESTINATION ${UNITY_QT_DIR}