blob: 092293ad5ab9cd5851a63af5d9ab2a76f7d877f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
momo_src = ['momo.c']
momo_deps = []
momo_args = []
libm = compiler.find_library('m', required: false)
if libm.found()
momo_deps += [libm]
endif
linmath_h = subproject('linmath.h').get_variable('linmath_h')
momo_deps += [linmath_h]
momo = declare_dependency(sources: momo_src, dependencies: momo_deps, compile_args: momo_args)
|