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