public
Description: An in-car assistant built with Qt Embedded Linux.
Homepage: http://wm161.net/labs/glovebox
Clone URL: git://github.com/workman161/glovebox.git
workman161 (author)
Thu Sep 25 17:57:36 -0700 2008
commit  b26bf95a4b30e9813a6c44d95f9523f5d82dc09a
tree    f0751cbe1bfacaa28fc00230ba6af6a43e7e7b45
parent  b359b515f184b4e845831a770225f4bd0c9ebce1
glovebox / CMakeLists.txt
100644 31 lines (23 sloc) 0.643 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
project(Glovebox)
cmake_minimum_required(VERSION 2.4.0)
 
set(GLOVEBOX_DATA_DIR
  ${CMAKE_INSTALL_PREFIX}/share
)
 
set(LAUNCHPAD_PLUGIN_DIR
  ${CMAKE_INSTALL_PREFIX}/lib/Launchpad/plugins
)
 
message("Plugins will be installed to ${LAUNCHPAD_PLUGIN_DIR}")
 
set(LAUNCHPAD_INCLUDES
  ${CMAKE_CURRENT_SOURCE_DIR}/Launchpad/src
)
 
set(GLOVEUI_INCLUDES
  ${CMAKE_CURRENT_SOURCE_DIR}/gloveui
)
 
include_directories(${LAUNCHPAD_INCLUDES})
include_directories(${GLOVEUI_INCLUDES})
 
add_subdirectory(gloveui)
add_subdirectory(Launchpad)
add_subdirectory(GpsService)
add_subdirectory(MapPage)
add_subdirectory(MediaPlayer)
add_subdirectory(NetworkStatus)