-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataProject.mk
46 lines (38 loc) · 1.16 KB
/
dataProject.mk
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
# Version 0.0.2 - 27.01.2012
#
#
# Contrainte
#
# Dans les d�finitions de variables ci-dessous, ne laisser jamais d'espace � la fin!!!
#
#########
#Project#
#########
#Name target,without extension
TARGET_NAME:=Common
#EXE
#SHARED_LIB
#STATIC_LIB
TARGET_MODE:=EXE
#Path where target will be build (relative or absolute for a ram disk by example)
#TARGET_PATH:=Q:/${USER}/Targets/${TARGET_NAME}#windows ramdrive
TARGET_PATH:=/tmp/ramdrive/${USER}/Targets/${TARGET_NAME}
#TARGET_PATH:=target#local
#Path where the targe will be copied just after building process (usefull for link project's)
#mimimum : nothing
TARGET_DEPLOY_PATH:=#../PRODUCTION/Deploy/bin
#Define variable Compilation
#Same as #define XXX (in .ccp code)
#mimimum : rien
#multiple variable : separateur espace
CODE_DEFINE_VARIABLES+=
#Etend le folder src du projet
#Conseil: Use this to specify .lib or .h in a workspace where projectA use output of ProjectB
#Circular dependancy are not allowed!
#Use space if multiple dependency to separate folder to include
#minimum : rien
SRC_AUX+= ../cppTestAPI/src
#########
# End #
#########