1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt
index 7f70403..e909569 100644
--- a/common/CMakeLists.txt
+++ b/common/CMakeLists.txt
@@ -6,7 +6,7 @@ list(APPEND _LIBUI_SOURCES
common/debug.c
common/matrix.c
common/shouldquit.c
- common/table.c
+# common/table.c
common/userbugs.c
)
set(_LIBUI_SOURCES ${_LIBUI_SOURCES} PARENT_SCOPE)
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index b753a7d..a648c64 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -6,7 +6,7 @@ endif()
_add_exec(tester
drawtests.c
- images.c
+# images.c
main.c
menus.c
page1.c
@@ -27,7 +27,7 @@ _add_exec(tester
page13.c
page14.c
page15.c
- page16.c
+# page16.c
spaced.c
${_TEST_RESOURCES_RC}
)
diff --git a/test/main.c b/test/main.c
index f33f30a..18774dc 100644
--- a/test/main.c
+++ b/test/main.c
@@ -159,8 +159,8 @@ int main(int argc, char *argv[])
innerTab = newTab();
uiTabAppend(outerTab, "Pages 16-?", uiControl(innerTab));
- page16 = makePage16();
- uiTabAppend(innerTab, "Page 16", uiControl(page16));
+// page16 = makePage16();
+// uiTabAppend(innerTab, "Page 16", uiControl(page16));
if (startspaced)
setSpaced(1);
|