File: src_core.pro

package info (click to toggle)
synthv1 0.8.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,844 kB
  • sloc: cpp: 12,982; makefile: 165; ansic: 66; xml: 48; sh: 6
file content (63 lines) | stat: -rw-r--r-- 931 bytes parent folder | download
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
# synthv1.pro
#
NAME = synthv1

TARGET = $${NAME}
TEMPLATE = lib
CONFIG += shared

include(src_core.pri)

HEADERS = \
	config.h \
	synthv1.h \
	synthv1_config.h \
	synthv1_filter.h \
	synthv1_formant.h \
	synthv1_wave.h \
	synthv1_ramp.h \
	synthv1_list.h \
	synthv1_fx.h \
	synthv1_reverb.h \
	synthv1_param.h \
	synthv1_sched.h \
	synthv1_programs.h \
	synthv1_controls.h

SOURCES = \
	synthv1.cpp \
	synthv1_config.cpp \
	synthv1_formant.cpp \
	synthv1_wave.cpp \
	synthv1_param.cpp \
	synthv1_sched.cpp \
	synthv1_programs.cpp \
	synthv1_controls.cpp


unix {

	OBJECTS_DIR = .obj_core
	MOC_DIR     = .moc_core
	UI_DIR      = .ui_core

	isEmpty(PREFIX) {
		PREFIX = /usr/local
	}

	isEmpty(LIBDIR) {
		TARGET_ARCH = $$system(uname -m)
		contains(TARGET_ARCH, x86_64) {
			LIBDIR = $${PREFIX}/lib64
		} else {
			LIBDIR = $${PREFIX}/lib
		}
	}

	INSTALLS += target

	target.path = $${PREFIX}/lib/$${NAME}
}

QT -= gui
QT += xml