-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmeson.build
More file actions
42 lines (38 loc) · 1.06 KB
/
meson.build
File metadata and controls
42 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright (c) Kyrylo Polezhaiev and contributors. All rights reserved.
# Released under the MIT license. See LICENSE file in the project root for full license information.
inc_cpp = include_directories('../../bindings/cpp')
if have_cpp
executable('polynomial-logistic-regression-cpp', 'polynomial-logistic-regression.cpp',
include_directories: [
inc,
inc_cpp
],
link_with: [
le_cpp
],
install: false,
dependencies: [glib, gobject]
)
executable('support-vector-machine-cpp', 'support-vector-machine.cpp',
include_directories: [
inc,
inc_cpp
],
link_with: [
le_cpp
],
install: false,
dependencies: [glib, gobject]
)
executable('shallow-neural-network-cpp', 'shallow-neural-network.cpp',
include_directories: [
inc,
inc_cpp
],
link_with: [
le_cpp
],
install: false,
dependencies: [glib, gobject]
)
endif