[f80690a] | 1 | #
|
---|
[8965860c] | 2 | # Copyright (c) 2022 Jiri Svoboda
|
---|
[f80690a] | 3 | # All rights reserved.
|
---|
| 4 | #
|
---|
| 5 | # Redistribution and use in source and binary forms, with or without
|
---|
| 6 | # modification, are permitted provided that the following conditions
|
---|
| 7 | # are met:
|
---|
| 8 | #
|
---|
| 9 | # - Redistributions of source code must retain the above copyright
|
---|
| 10 | # notice, this list of conditions and the following disclaimer.
|
---|
| 11 | # - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | # notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | # documentation and/or other materials provided with the distribution.
|
---|
| 14 | # - The name of the author may not be used to endorse or promote products
|
---|
| 15 | # derived from this software without specific prior written permission.
|
---|
| 16 | #
|
---|
| 17 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | #
|
---|
| 28 |
|
---|
[77ffa01] | 29 | deps = [ 'gfx', 'gfxfont', 'memgfx', 'display', 'congfx' ]
|
---|
[f80690a] | 30 | src = files(
|
---|
[96c6a00] | 31 | 'src/accel.c',
|
---|
[d70dc1c4] | 32 | 'src/checkbox.c',
|
---|
[8965860c] | 33 | 'src/clickmatic.c',
|
---|
[8009dc27] | 34 | 'src/control.c',
|
---|
[f7a90df] | 35 | 'src/dummygc.c',
|
---|
[03145ee] | 36 | 'src/entry.c',
|
---|
[5e109e1] | 37 | 'src/filedialog.c',
|
---|
[11662bd] | 38 | 'src/filelist.c',
|
---|
[8009dc27] | 39 | 'src/fixed.c',
|
---|
[f93e4e3] | 40 | 'src/image.c',
|
---|
[ba09d06] | 41 | 'src/label.c',
|
---|
[214aefb] | 42 | 'src/menu.c',
|
---|
| 43 | 'src/menubar.c',
|
---|
| 44 | 'src/menuentry.c',
|
---|
[de227aba] | 45 | 'src/msgdialog.c',
|
---|
[de9992c] | 46 | 'src/paint.c',
|
---|
[f80690a] | 47 | 'src/pbutton.c',
|
---|
[3c8c580] | 48 | 'src/popup.c',
|
---|
[80d4aea] | 49 | 'src/promptdialog.c',
|
---|
[7020d1f] | 50 | 'src/rbutton.c',
|
---|
[47728678] | 51 | 'src/resource.c',
|
---|
[bd16113] | 52 | 'src/scrollbar.c',
|
---|
[ef734b7] | 53 | 'src/slider.c',
|
---|
[f7a90df] | 54 | 'src/ui.c',
|
---|
| 55 | 'src/wdecor.c',
|
---|
| 56 | 'src/window.c',
|
---|
[f80690a] | 57 | )
|
---|
| 58 |
|
---|
| 59 | test_src = files(
|
---|
[96c6a00] | 60 | 'test/accel.c',
|
---|
[d70dc1c4] | 61 | 'test/checkbox.c',
|
---|
[8965860c] | 62 | 'test/clickmatic.c',
|
---|
[8009dc27] | 63 | 'test/control.c',
|
---|
[03145ee] | 64 | 'test/entry.c',
|
---|
[5e109e1] | 65 | 'test/filedialog.c',
|
---|
[11662bd] | 66 | 'test/filelist.c',
|
---|
[8009dc27] | 67 | 'test/fixed.c',
|
---|
[f93e4e3] | 68 | 'test/image.c',
|
---|
[ba09d06] | 69 | 'test/label.c',
|
---|
[f80690a] | 70 | 'test/main.c',
|
---|
[95a9cbc] | 71 | 'test/menu.c',
|
---|
| 72 | 'test/menubar.c',
|
---|
| 73 | 'test/menuentry.c',
|
---|
[de227aba] | 74 | 'test/msgdialog.c',
|
---|
[de9992c] | 75 | 'test/paint.c',
|
---|
[f80690a] | 76 | 'test/pbutton.c',
|
---|
[3c8c580] | 77 | 'test/popup.c',
|
---|
[80d4aea] | 78 | 'test/promptdialog.c',
|
---|
[7020d1f] | 79 | 'test/rbutton.c',
|
---|
[47728678] | 80 | 'test/resource.c',
|
---|
[5ef85c0] | 81 | 'test/scrollbar.c',
|
---|
[ef734b7] | 82 | 'test/slider.c',
|
---|
[f7a90df] | 83 | 'test/ui.c',
|
---|
[1769693] | 84 | 'test/wdecor.c',
|
---|
[f7a90df] | 85 | 'test/window.c',
|
---|
[f80690a] | 86 | )
|
---|