1 project('nntrainer', 'c', 'cpp',
3 license: ['apache-2.0'],
4 meson_version: '>=0.50.0',
12 add_project_arguments('-DMIN_CPP_VERSION=201402', language:['c','cpp'])
14 cc = meson.get_compiler('c')
15 cxx = meson.get_compiler('cpp')
18 if get_option('enable-tizen')
19 # Pass __TIZEN__ to the compiler
20 build_platform = 'tizen'
21 add_project_arguments('-D__TIZEN__=1', language:['c','cpp'])
23 if get_option('enable-tizen-feature-check')
24 add_project_arguments('-D__FEATURE_CHECK_SUPPORT__', language: ['c', 'cpp'])
32 '-Wformat-nonliteral',
45 '-Wmissing-declarations',
46 '-Wmissing-include-dirs',
47 '-Wmissing-prototypes',
50 '-Wold-style-definition',
51 '-Wdeclaration-after-statement',
55 foreach extra_arg : warning_flags
56 if cc.has_argument (extra_arg)
57 add_project_arguments([extra_arg], language: 'c')
59 if cxx.has_argument (extra_arg)
60 add_project_arguments([extra_arg], language: 'cpp')
64 foreach extra_arg : warning_c_flags
65 if cc.has_argument (extra_arg)
66 add_project_arguments([extra_arg], language: 'c')
71 nntrainer_prefix = get_option('prefix')
72 nntrainer_libdir = join_paths(nntrainer_prefix, get_option('libdir'))
73 nntrainer_bindir = join_paths(nntrainer_prefix, get_option('bindir'))
74 nntrainer_includedir = join_paths(nntrainer_prefix, get_option('includedir'))
75 nntrainer_inidir = get_option('sysconfdir')
76 application_install_dir = join_paths(nntrainer_bindir, 'applications')
78 # Set default configuration
79 nntrainer_conf = configuration_data()
80 nntrainer_conf.set('VERSION', meson.project_version())
81 nntrainer_conf.set('PREFIX', nntrainer_prefix)
82 nntrainer_conf.set('EXEC_PREFIX', nntrainer_bindir)
83 nntrainer_conf.set('LIB_INSTALL_DIR', nntrainer_libdir)
84 nntrainer_conf.set('INCLUDE_INSTALL_DIR', nntrainer_includedir)
86 dummy_dep = dependency('', required: false)
90 if get_option('enable-cublas')
91 add_project_arguments('-DUSE_CUBLAS=1', language:['c','cpp'])
94 if get_option('enable-blas')
95 add_project_arguments('-DUSE_BLAS=1', language:['c','cpp'])
96 if build_platform == 'tizen'
97 blas_dep = dependency('openblas')
99 blas_dep = dependency('blas-openblas')
103 if get_option('use_gym')
104 add_project_arguments('-DUSE_GYM=1', language:['c','cpp'])
107 if get_option('enable-logging')
108 add_project_arguments('-D__LOGGING__=1', language:['c','cpp'])
111 if get_option('enable-test')
112 add_project_arguments('-DENABLE_TEST=1', language:['c','cpp'])
115 libm_dep = cxx.find_library('m') # cmath library
116 libdl_dep = cxx.find_library('dl') # DL library
117 thread_dep = dependency('threads') # pthread for tensorflow-lite
118 iniparser_dep = dependency('iniparser', required : false) # iniparser
119 if not iniparser_dep.found()
120 message('falling back to find libiniparser library and header files')
121 libiniparser_dep = cxx.find_library('iniparser')
122 if libiniparser_dep.found() and cxx.has_header('iniparser.h', \
123 args : '-I/usr/include/iniparser')
124 iniparser_dep = declare_dependency (dependencies : libiniparser_dep,
125 compile_args : '-I/usr/include/iniparser')
129 nnstreamer_capi_dep = dependency('capi-nnstreamer', required:false)
130 if get_option('enable-nnstreamer-backbone')
131 add_project_arguments('-DENABLE_NNSTREAMER_BACKBONE=1', language:['c','cpp'])
134 tflite_dep = dependency('tensorflow-lite', required: false)
135 if get_option('enable-tflite-backbone')
136 add_project_arguments('-DENABLE_TFLITE_BACKBONE=1', language:['c','cpp'])
139 jsoncpp_dep = dependency('jsoncpp') # jsoncpp
140 libcurl_dep = dependency('libcurl')
141 gtest_dep = dependency('gtest', required: false)
144 configure_file(input: 'nntrainer.pc.in', output: 'nntrainer.pc',
145 install_dir: join_paths(nntrainer_libdir, 'pkgconfig'),
146 configuration: nntrainer_conf
155 if get_option('enable-app')
156 if not tflite_dep.found()
157 error('Tensorflow-Lite dependency not found')
159 subdir('Applications')
162 if get_option('enable-test')
166 if get_option('enable-nnstreamer-tensor-filter')
167 nnstreamer_dep = dependency('nnstreamer', required: true)
168 subdir('nnstreamer/tensor_filter')