Welcome to mirror list, hosted at ThFree Co, Russian Federation.

system.pro « system « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 495cdf4710578a40cc07779b851a3f67c449f36c (plain)
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
# This file should be viewed as a -*- mode: Makefile -*-

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#			      W A R N I N G ! ! !                             #
#             a u t h o r i z e d    p e r s o n a l    o n l y               #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

include(../Config.pri)

FOO_LIB_VERSION	= $${APPVERSION_MAJ}$${APPVERSION_MID}
TEMPLATE        = lib
TARGET          = $${LIB_SYSTEM}
VERSION         = $${APPVERSION}
TARGET_VERSION_EXT = $${APPVERSION_MAJ}.$${APPVERSION_MID}

#
# CONFIG
#
#######################################

CONFIG          *= dll python$${PYTHON_VERSION_MAJ}.$${PYTHON_VERSION_MIN}
QT += xml

exists (../libconfig.pri) {
  include (../libconfig.pri)
}
#
# INCLUDE PATH
#
#######################################


#
# DEFINES
#
#######################################

win32:DEFINES   *= MAKE_LIB_SYSTEM_DLL

#
# BUILD DIRECTORIES
#
#######################################

BUILD_DIR       = ../../build/

OBJECTS_DIR     = $${BUILD_DIR}/$${REL_OBJECTS_DIR}
!win32:DESTDIR  = $${BUILD_DIR}/$${REL_DESTDIR}/lib
win32:DESTDIR   = $${BUILD_DIR}/$${REL_DESTDIR}

#win32:QMAKE_POST_LINK = "$$QMAKE_MOVE $${DESTDIR}/$${TARGET}$${LIBVERSION}.lib $${DESTDIR}\$${TARGET}$${FOO_LIB_VERSION}.lib"

#
# INSTALL
#
#######################################

LIB_DIR       = ../../lib
# install library
target.path   = $$LIB_DIR
# "make install" configuration options
INSTALLS     += target


#
# SOURCES & HEADERS
#
#######################################

!static {
  include(src.pri)
}