-
Notifications
You must be signed in to change notification settings - Fork 21
/
eurorack-blocks.gypi
49 lines (41 loc) · 968 Bytes
/
eurorack-blocks.gypi
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
43
44
45
46
47
48
49
##############################################################################
#
# eurorack-blocks.gypi
# Copyright (c) 2020 Raphael DINGE
#
#Tab=3########################################################################
{
'target_defaults': {
'xcode_settings': {
'CLANG_CXX_LANGUAGE_STANDARD': 'c++2a',
'USE_HEADERMAP': 'NO',
'WARNING_CFLAGS': [
'-Wno-four-char-constants',
],
},
'cflags_cc': [
'-std=gnu++2a',
],
'cflags': [
'-Wno-multichar',
],
},
'conditions': [
['OS=="mac"', {
'includes': [
'./include/erb/xcode.gypi',
],
}],
['OS=="linux"', {
'includes': [
'./include/erb/linux.gypi',
],
}],
['OS=="daisy"', {
'includes': [
'./include/erb/daisy.gypi',
'./submodules/libdaisy.gypi',
],
}],
],
}