From 3e76d799b18933226b511a8941fb9589cb873c88 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 20 Mar 2018 01:58:34 -0400 Subject: [PATCH] Fixed leftovers from utflib-and-attrstr that broke builds of things I didn't fully update yet, since people want to build them anyway (for testing in a CI environment, I suppose; a real unit test suite would be better for this, though, which is one of the reasons for the _future/unittest stuff...) Updates #302. --- examples/CMakeLists.txt | 3 +-- test/CMakeLists.txt | 6 +++--- test/main.c | 4 ++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index cdedb039..75b7f9d1 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -41,5 +41,4 @@ add_custom_target(examples controlgallery histogram cpp-multithread - drawtext - opentype) + drawtext) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e4924bb3..c2f9c1a9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -18,9 +18,9 @@ _add_exec(tester page7a.c page7b.c page7c.c - page8.c - page9.c - page10.c +# page8.c +# page9.c +# page10.c page11.c page12.c page13.c diff --git a/test/main.c b/test/main.c index 18774dcd..aa38784f 100644 --- a/test/main.c +++ b/test/main.c @@ -129,7 +129,7 @@ int main(int argc, char *argv[]) page7 = makePage7(); uiTabAppend(innerTab, "Page 7", uiControl(page7)); - page8 = makePage8(); +/* page8 = makePage8(); uiTabAppend(innerTab, "Page 8", uiControl(page8)); page9 = makePage9(); @@ -137,7 +137,7 @@ int main(int argc, char *argv[]) page10 = makePage10(); uiTabAppend(innerTab, "Page 10", uiControl(page10)); - +*/ innerTab = newTab(); uiTabAppend(outerTab, "Pages 11-15", uiControl(innerTab));