Skip to content

Commit e4ddc6e

Browse files
committed
Adding subprojects.
1 parent 5dc46fa commit e4ddc6e

4 files changed

Lines changed: 26 additions & 41 deletions

File tree

.gitignore

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1 @@
1-
aclocal.m4
2-
autom4te.cache
3-
*.log
4-
*.status
5-
configure
6-
Makefile
7-
scripts
8-
config.h
9-
stamp-h1
10-
*.layout
11-
.bin
12-
.obj
13-
.pot
14-
dbus-glue.h
15-
*.rc
16-
*.cache
17-
*.zip
18-
*.bak
19-
*.[0-9]
20-
vgcore.*
21-
*.nsi
22-
*.exe
23-
doxyfile
24-
doxygen/html
25-
doxygen/rtf
26-
*~
27-
*.pc
28-
*.obj
29-
*.dll
30-
*.exe
31-
*.exp
32-
*.lib
33-
metainfo.xml
34-
*.pot
35-
ABOUT-NLS
36-
intl
37-
m4
38-
po
39-
libtool
401
.vscode

meson.build

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,24 @@ add_project_arguments(cxx.get_supported_arguments(compiler_flags_common), langua
5757
#
5858
# Dependencies
5959
#
60-
lib3270 = dependency('lib3270', required:true)
60+
lib3270 = dependency(
61+
'lib3270',
62+
required: true,
63+
fallback: [
64+
'lib3270',
65+
'static_library'
66+
]
67+
)
6168

6269
lib_deps = [
63-
dependency('ipc3270', required:true)
70+
dependency(
71+
'libipc3270',
72+
required: true,
73+
fallback: [
74+
'libipc3270',
75+
'static_library'
76+
]
77+
)
6478
]
6579

6680
#

subprojects/lib3270.wrap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[wrap-git]
2+
url = https://github.com/PerryWerneck/lib3270.git
3+
revision = HEAD
4+
depth = 1
5+

subprojects/libipc3270.wrap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[wrap-git]
2+
url = https://github.com/PerryWerneck/libipc3270.git
3+
revision = develop
4+
depth = 1
5+

0 commit comments

Comments
 (0)