summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Burley <az6667@gmail.com>2019-02-09 14:25:39 +1100
committerMike Frysinger <vapier@gmail.com>2019-02-09 13:17:25 -0500
commite5502c7a3f1fe60536ec060f0211d97066c006ea (patch)
tree45d48f14b3dca1e0bbd11dffbaf248132d1c04d5
parent2d1c4ba01be3746eecbda715ff51b252d17beb82 (diff)
downloadlibgd-e5502c7a3f1fe60536ec060f0211d97066c006ea.tar.gz
tests: cmake: list appending instead of set(
Consistent use of LIST(APPEND over SET(
-rw-r--r--tests/gdimagecreate/CMakeLists.txt2
-rw-r--r--tests/gdimagecrop/CMakeLists.txt2
-rw-r--r--tests/gdimagetruecolortopalette/CMakeLists.txt2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/gdimagecreate/CMakeLists.txt b/tests/gdimagecreate/CMakeLists.txt
index 905e79c..1cd0c1a 100644
--- a/tests/gdimagecreate/CMakeLists.txt
+++ b/tests/gdimagecreate/CMakeLists.txt
@@ -1,4 +1,4 @@
-SET(TESTS_FILES
+LIST(APPEND TESTS_FILES
bug00340
)
diff --git a/tests/gdimagecrop/CMakeLists.txt b/tests/gdimagecrop/CMakeLists.txt
index 8560a86..49b0909 100644
--- a/tests/gdimagecrop/CMakeLists.txt
+++ b/tests/gdimagecrop/CMakeLists.txt
@@ -1,4 +1,4 @@
-SET(TESTS_FILES
+LIST(APPEND TESTS_FILES
bug00297
bug00432
bug00485_auto
diff --git a/tests/gdimagetruecolortopalette/CMakeLists.txt b/tests/gdimagetruecolortopalette/CMakeLists.txt
index b23d2a1..fc7f6f7 100644
--- a/tests/gdimagetruecolortopalette/CMakeLists.txt
+++ b/tests/gdimagetruecolortopalette/CMakeLists.txt
@@ -1,4 +1,4 @@
-SET(TESTS_FILES
+LIST(APPEND TESTS_FILES
bug00307
php_bug_72512
)