summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormturk <mturk@13f79535-47bb-0310-9956-ffa450edef68>2021-12-03 02:08:27 +0000
committermturk <mturk@13f79535-47bb-0310-9956-ffa450edef68>2021-12-03 02:08:27 +0000
commit56438ca6fe492098797bba5be16919b5831804ae (patch)
tree58e2738ee2693d3110e0cc150d5d876e7e49aeab
parenta79d7089112fb35fa2ec462ea62b8e180a228d09 (diff)
downloadlibapr-56438ca6fe492098797bba5be16919b5831804ae.tar.gz
Change rest of variable append directives
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1895520 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b48edf082..3eff1f436 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -466,8 +466,8 @@ SET(dbd_drivers)
# libapr-2 is shared, apr-2 is static
ADD_LIBRARY(${apr_libname} SHARED ${APR_SOURCES} ${APR_PUBLIC_HEADERS_GENERATED} libapr.rc)
-SET(install_targets ${install_targets} ${apr_libname})
-SET(install_bin_pdb ${install_bin_pdb} ${PROJECT_BINARY_DIR}/${apr_libname}.pdb)
+LIST(APPEND install_targets ${apr_libname})
+LIST(APPEND install_bin_pdb ${PROJECT_BINARY_DIR}/${apr_libname}.pdb)
TARGET_LINK_LIBRARIES(${apr_libname} ${XMLLIB_LIBRARIES} ${XLATE_LIBRARIES} ${APR_SYSTEM_LIBS})
SET_TARGET_PROPERTIES(${apr_libname} PROPERTIES COMPILE_DEFINITIONS "APR_DECLARE_EXPORT;APR_HAVE_MODULAR_DSO")
ADD_DEPENDENCIES(${apr_libname} test_char_header)