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