Skip to content

Commit cfdf422

Browse files
author
Monte Goulding
committed
[[ Gypify ]] Gypify missing lcidlc project file
The lcidlc project files had been removed from the repo but not replaced with gyp files.
1 parent 44a8c84 commit cfdf422

File tree

2 files changed

+118
-0
lines changed

2 files changed

+118
-0
lines changed

lcidlc/lcidlc.gyp

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
{
2+
# ----- lcidlc -----
3+
'includes':
4+
[
5+
'../common.gypi',
6+
],
7+
8+
'targets':
9+
[
10+
{
11+
'target_name': 'lcidlc',
12+
'type': 'executable',
13+
14+
'dependencies':
15+
[
16+
'../libfoundation/libfoundation.gyp:libFoundation',
17+
'encode_support',
18+
],
19+
20+
'include_dirs':
21+
[
22+
'include',
23+
'src',
24+
],
25+
26+
'sources':
27+
[
28+
'include/LiveCode.h',
29+
30+
'src/Coder.h',
31+
'src/Coder.cpp',
32+
'src/CString.h',
33+
'src/CString.cpp',
34+
'src/EncodedSupportJava.c',
35+
'src/EncodedSupport.c',
36+
'src/Error.h',
37+
'src/Error.cpp',
38+
'src/Interface.h',
39+
'src/Interface.cpp',
40+
'src/InterfaceGenerate.cpp',
41+
'src/InterfacePrivate.h',
42+
'src/Main.cpp',
43+
'src/NativeType.h',
44+
'src/NativeType.cpp',
45+
'src/Parser.h',
46+
'src/Parser.cpp',
47+
'src/Position.h',
48+
'src/Position.cpp',
49+
'src/Scanner.h',
50+
'src/Scanner.cpp',
51+
'src/Value.h',
52+
'src/Value.cpp',
53+
54+
],
55+
},
56+
{
57+
'target_name': 'encode_support',
58+
'type': 'none',
59+
60+
'sources':
61+
[
62+
'src/Support.java',
63+
'src/Support.mm',
64+
],
65+
66+
'actions':
67+
[
68+
{
69+
'action_name': 'Encode Support.mm',
70+
71+
'inputs':
72+
[
73+
'../util/encode_source.pl',
74+
'src/Support.mm',
75+
],
76+
'outputs':
77+
[
78+
'src/EncodedSupport.c',
79+
],
80+
81+
'action':
82+
[
83+
'<@(perl)',
84+
'../util/encode_source.pl',
85+
'src/Support.mm',
86+
'src/EncodedSupport.c',
87+
'g_support_template',
88+
],
89+
},
90+
{
91+
'action_name': 'Encode Support.java',
92+
93+
'inputs':
94+
[
95+
'../util/encode_source.pl',
96+
'src/Support.java',
97+
],
98+
'outputs':
99+
[
100+
'src/EncodedJavaSupport.c',
101+
],
102+
103+
'action':
104+
[
105+
'<@(perl)',
106+
'../util/encode_source.pl',
107+
'src/Support.java',
108+
'src/EncodedJavaSupport.c',
109+
'g_java_support_template',
110+
],
111+
},
112+
],
113+
},
114+
],
115+
}

livecode.gyp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020

2121
# Widgets and libraries
2222
'extensions/extensions.gyp:extensions',
23+
24+
# lcidlc
25+
'lcidlc/lcidlc.gyp:lcidlc',
2326
],
2427

2528
'conditions':

0 commit comments

Comments
 (0)