File: paths.qbas

package info (click to toggle)
mixxx 1.4.2-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,676 kB
  • ctags: 4,130
  • sloc: ansic: 35,627; cpp: 27,118; xml: 3,691; sh: 417; makefile: 54
file content (83 lines) | stat: -rwxr-xr-x 2,774 bytes parent folder | download | duplicates (2)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83

#************************************************************************
# QBASystem
# version 0.9.7
# Copyright (c) 2003-2004 Gianluca Romanin ( J_Zar )
#        <j_zar_AT_users.berlios.de>
#************************************************************************


#************************************************************************
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#************************************************************************




# platform definition
unix {

# ************************************************* HEADER
# --------------------------------------------------
# Basical paths  (TOUCH!)
LIB_BASE0 = /usr/lib
LIB_BASE1 = /usr/local/lib
LIB_BASE2 = /opt/lib
BIN_BASE0 = /usr/bin
BIN_BASE1 = /usr/local/bin
HEADER_BASE0 = /usr/include
HEADER_BASE1 = /usr/local/include
OPTIONAL_BASE0 = $(QTDIR)
OPTIONAL_BASE1 =
OPTIONAL_BASE2 =
# --------------------------------------------------

# temporary files ---------------------------------- 
H_TEMP = ".help_temp" 
L_TEMP = ".l_temp" 
CONFIGURE_DEF = ".configure.def" 
SUMMARY_LOG = ".summary.log" 
# --------------------------------------------------

# --------------------------------------------------
# Qmake parameters         (DON'T TOUCH!)
QMAKE_CLEAN += a.out $$CONFIGURE_DEF config.h $$L_TEMP $$H_TEMP $$SUMMARY_LOG
# --------------------------------------------------

# --------------------------------------------------
# Internal parameters
INIT = true
# DEF_CHAR contains '#'. Qmake has some strange behaviours 
# with quote chars...
DEF_CHAR = $$system( echo $'\x23')
# --------------------------------------------------


# --------------------------------------------------
# Include paths added by configure script     (DON'T TOUCH!)
message("-------------------------------------------")
!include ( $$CONFIGURE_DEF ) {
	message( "Using defaults ...." )
} else {
	contains( CUSTOM_BUILD, true ) {
		message( "Using custom config ...." )
	} else {
		message( "Using defaults ...." )
	}
}
message("-------------------------------------------")
# --------------------------------------------------