/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/meson.build

  • Committer: Gustav Hartvigsson
  • Date: 2021-01-19 14:42:03 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210119144203-x6dogarnxlyy7xi7
Hopefully finisted the meson convertion

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
libssts_files = libssts_src_files
76
76
libssts_files += libssts_header_files
77
77
 
78
 
 
79
 
library ('ssts',
80
 
         files(libssts_src_files),
81
 
         version : meson.project_version(),
82
 
         soversion : meson.project_version(),
83
 
         dependencies : [pthread_dep, mthreads_dep, boehm_dep, mathlib_dep],
84
 
         )
85
 
 
86
 
# libssts_files = files ('''
87
 
#     Application.c
88
 
#     Application.h
89
 
#     baseobject.c
90
 
#     baseobject.h
91
 
#     Box.c
92
 
#     Box.h
93
 
#     BaseN.h
94
 
#     BaseN.c
95
 
#     Callback.c
96
 
#     Callback.h
97
 
#     defs.c
98
 
#     defs.h
99
 
#     DynamicArray.c
100
 
#     DynamicArray.h
101
 
#     Error.c
102
 
#     Error.h
103
 
#     Func.c
104
 
#     Func.h
105
 
#     GlobalNotify.c
106
 
#     GlobalNotify.h
107
 
#     hash.c
108
 
#     hash.h
109
 
#     Interface.c
110
 
#     Interface.h
111
 
#     LinkedList.c
112
 
#     LinkedList.h
113
 
#     Map.c
114
 
#     Map.h
115
 
#     mm.h
116
 
#     mm.c
117
 
#     mm_mark_and_sweep.h
118
 
#     mm_mark_and_sweep.c
119
 
#     Matrix.c
120
 
#     Matrix.h
121
 
#     MainLoop.c
122
 
#     MainLoop.h
123
 
#     primes.c
124
 
#     primes.h
125
 
#     Thread.c
126
 
#     Thread.h
127
 
#     types.c
128
 
#     types.h
129
 
#     external/tinycthread.c
130
 
#     external/tinycthread.h
131
 
#     SimpleTypeSystem.c
132
 
#     SimpleTypeSystem.h
133
 
#     Stream.c
134
 
#     Stream.h
135
 
#     StreamPrivate.h
136
 
#     utils.c
137
 
#     utils.h
138
 
#     vec.c
139
 
#     vec.h
140
 
# '''.split())
 
78
libssts_include = include_directories ('.')
 
79
 
 
80
dependencies = [pthread_dep, mthreads_dep, boehm_dep, mathlib_dep]
 
81
 
 
82
libssts = library ('ssts',
 
83
    files(libssts_src_files),
 
84
    version : meson.project_version(),
 
85
    soversion : meson.project_version(),
 
86
    include_directories : libssts_include,
 
87
    dependencies : dependencies,
 
88
)
141
89