| 1 | #
|
|---|
| 2 | # SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
|
|---|
| 3 | #
|
|---|
| 4 | # SPDX-License-Identifier: BSD-3-Clause
|
|---|
| 5 | #
|
|---|
| 6 |
|
|---|
| 7 | language = 'cpp'
|
|---|
| 8 | allow_shared = true
|
|---|
| 9 | src = files(
|
|---|
| 10 | 'src/condition_variable.cpp',
|
|---|
| 11 | 'src/exception.cpp',
|
|---|
| 12 | 'src/future.cpp',
|
|---|
| 13 | 'src/iomanip.cpp',
|
|---|
| 14 | 'src/ios.cpp',
|
|---|
| 15 | 'src/iostream.cpp',
|
|---|
| 16 | 'src/locale.cpp',
|
|---|
| 17 | 'src/mutex.cpp',
|
|---|
| 18 | 'src/new.cpp',
|
|---|
| 19 | 'src/refcount_obj.cpp',
|
|---|
| 20 | 'src/shared_mutex.cpp',
|
|---|
| 21 | 'src/stdexcept.cpp',
|
|---|
| 22 | 'src/string.cpp',
|
|---|
| 23 | 'src/system_error.cpp',
|
|---|
| 24 | 'src/thread.cpp',
|
|---|
| 25 | 'src/typeindex.cpp',
|
|---|
| 26 | 'src/typeinfo.cpp',
|
|---|
| 27 | 'src/__bits/runtime.cpp',
|
|---|
| 28 | 'src/__bits/trycatch.cpp',
|
|---|
| 29 | 'src/__bits/unwind.cpp',
|
|---|
| 30 | 'src/__bits/test/algorithm.cpp',
|
|---|
| 31 | 'src/__bits/test/adaptors.cpp',
|
|---|
| 32 | 'src/__bits/test/array.cpp',
|
|---|
| 33 | 'src/__bits/test/bitset.cpp',
|
|---|
| 34 | 'src/__bits/test/deque.cpp',
|
|---|
| 35 | 'src/__bits/test/functional.cpp',
|
|---|
| 36 | 'src/__bits/test/future.cpp',
|
|---|
| 37 | 'src/__bits/test/list.cpp',
|
|---|
| 38 | 'src/__bits/test/map.cpp',
|
|---|
| 39 | 'src/__bits/test/memory.cpp',
|
|---|
| 40 | 'src/__bits/test/mock.cpp',
|
|---|
| 41 | 'src/__bits/test/numeric.cpp',
|
|---|
| 42 | 'src/__bits/test/ratio.cpp',
|
|---|
| 43 | 'src/__bits/test/set.cpp',
|
|---|
| 44 | 'src/__bits/test/string.cpp',
|
|---|
| 45 | 'src/__bits/test/test.cpp',
|
|---|
| 46 | 'src/__bits/test/tuple.cpp',
|
|---|
| 47 | 'src/__bits/test/unordered_map.cpp',
|
|---|
| 48 | 'src/__bits/test/unordered_set.cpp',
|
|---|
| 49 | 'src/__bits/test/vector.cpp',
|
|---|
| 50 | )
|
|---|