Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / BilatTools_OMP / dataProject.mk
1 # Version 0.0.2
2 # Cedric.Bilat@he-arc.ch
3 #
4 # Notes:
5 #
6 # (N1) This configuration file is compiler-free.
7 #
8 # (N2) Go in xxx.mk if you whish customize a specific compiler (where xxx= gcc, xxx = visual, ...).
9 #
10 # Conseils:
11 #
12 # (C1) In the below definition of variables, never let a space at the end!!!
13 #
14 # (C2) When you overrid a varaible "XXX+= YYY" be careful to let a space after the symbol "="
15 #
16
17 #################################################
18 # Project Configurator #
19 #################################################
20
21 ##############################
22 # Basic #
23 ##############################
24
25 #Name target (without extension)
26
27 TARGET_NAME:=BilatTools_OMP
28
29 #Target type:
30 # EXE
31 # SHARED_LIB
32 # STATIC_LIB
33
34 TARGET_MODE:=STATIC_LIB
35
36 #################
37 # src aux #
38 #################
39
40 # Expand the src folder.
41 # Tip : All files (.cpp, .h .lib, ...) will be considered recursively !
42 # Mimimum : empty
43
44 #SRC_AUX+=
45
46 #################
47 # API Ext #
48 #################
49
50 # Define preconfigured extern API
51 # Tip : See ../PRODUCTION/....../api for available preconfigured api (Boost, openCV, cppTest, ...)
52 # Note : apiXXX.mk define
53 # .h for compil-time
54 # .so .lib for link-time
55 # but nothing usefull for runtime
56 #
57 # Mimimum : empty
58
59 include $(API)/openmp.mk
60
61 #############################
62 # Advanced #
63 #############################
64
65 # Define compilation variable
66 # Note : Same as -DXXX (on command line) or #define XXX (in .ccp code)
67 # Mimimum : empty
68 CODE_DEFINE_VARIABLES+=
69
70 #################################################
71 # End #
72 #################################################