1
/***************************************************************************
2
 *
3
 *   Copyright (C) 2011 The Chakra Project
4
 *
5
 *   GPL3
6
 *
7
 ***************************************************************************/
8
9
#ifndef CONFIG_H
10
#define CONFIG_H
11
12
/* Defines the installation paths */
13
#define IMAGE_INSTALL_PATH "${CMAKE_INSTALL_PREFIX}/share/tribe/images"
14
#define SCRIPTS_INSTALL_PATH "${CMAKE_INSTALL_PREFIX}/share/tribe/scripts"
15
#define CONFIG_INSTALL_PATH "${CMAKE_INSTALL_PREFIX}/share/tribe/config"
16
#define STYLESHEET_INSTALL_PATH "${CMAKE_INSTALL_PREFIX}/share/tribe/style/tribe.qss"
17
#define TRIBE_INSTALL_PATH "${CMAKE_INSTALL_PREFIX}"
18
#define DATA_INSTALL_DIR "${DATA_INSTALL_DIR}"
19
20
/* Defines Tribe Build Revision (will appear on UI) */
21
#define TRIBE_BUILD_REVISION "source build/from git"
22
23
/* Defines Target Mount Point */
24
#define INSTALLATION_TARGET "/mnt/install.root"
25
26
/* Defines Boot Mount Point */
27
#define BOOTMNT_POINT "/bootmnt/chakra/@ARCH@"
28
29
/* Defines the version */
30
#define TRIBE_VERSION "source build/from git"
31
32
#endif /*CONFIG_H*/