2 # Cedric.Bilat@he-arc.ch
6 # (N1) This configuration file is compiler-free.
8 # (N2) Go in xxx.mk if you whish customize a specific compiler (where xxx= gcc, xxx = visual, ...).
12 # (C1) In the below definition of variables, never let a space at the end!!!
14 # (C2) When you overrid a varaible "XXX+= YYY" be careful to let a space after the symbol "="
17 #################################################
18 # Project Configurator #
19 #################################################
21 ##############################
23 ##############################
25 #Name target (without extension)
27 TARGET_NAME:=Tuto_OpenCV
40 # Expand the src folder.
41 # Tip : All files (.cpp, .h .lib, ...) will be considered recursively !
44 SRC_AUX+= ../BilatTools_CPP/src/core
45 SRC_AUX+= ../BilatTools_OpenCV/src
46 SRC_AUX+= ../BilatTools_Cuda_smart_switch/src/core
52 # Define preconfigured extern API
53 # Tip : See ../PRODUCTION/....../api for available preconfigured api (Boost, openCV, cppTest, ...)
54 # Note : apiXXX.mk define
56 # .so .lib for link-time
57 # but nothing usefull for runtime
61 include $(API)/opencv.mk
62 include $(API)/openmp.mk #for linux
64 #############################
66 #############################
68 # Define compilation variable
69 # Note : Same as -DXXX (on command line) or #define XXX (in .ccp code)
71 CODE_DEFINE_VARIABLES+=CBI_NO_CUDA
73 #################################################
75 #################################################