Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Student_OMP_Image / 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:=Student_OMP_Image
28
29 #Target type:
30 # EXE
31 # SHARED_LIB
32 # STATIC_LIB
33
34 TARGET_MODE:=EXE
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+= ../BilatTools_CPP/src/core
45 SRC_AUX+= ../BilatTools_OMP/src/core
46 SRC_AUX+= ../BilatTools_OpenCV/src/core
47 SRC_AUX+= ../BilatTools_Cuda_smart_switch/src/core
48
49 #################
50 # API Ext #
51 #################
52
53 # Define preconfigured extern API
54 # Tip : See ../PRODUCTION/....../api for available preconfigured api (Boost, openCV, cppTest, ...)
55 # Note : apiXXX.mk define
56 # .h for compil-time
57 # .so .lib for link-time
58 # but nothing usefull for runtime
59 # Usage : -include $(API)/XXX.mk
60 # Mimimum : empty
61
62 include ${API}/bilat_Image_FreeGlut.mk
63 include $(API)/openmp.mk
64 include ${API}/opencv.mk
65
66 #############################
67 # Advanced #
68 #############################
69
70 # Define compilation variable
71 # Note : Same as -DXXX (on command line) or #define XXX (in .ccp code)
72 # Mimimum : empty
73 CODE_DEFINE_VARIABLES+=CBI_NO_CUDA
74
75 #################################################
76 # End #
77 #################################################