Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 1 | include(AddLLVM) |
Alexey Samsonov | 2e8e441 | 2014-05-09 22:11:03 +0000 | [diff] [blame] | 2 | include(ExternalProject) |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 3 | include(LLVMParseArguments) |
Alexey Samsonov | 392c50d | 2013-01-18 16:05:21 +0000 | [diff] [blame] | 4 | include(CompilerRTUtils) |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 5 | |
Alexey Samsonov | 392c50d | 2013-01-18 16:05:21 +0000 | [diff] [blame] | 6 | # Tries to add "object library" target for a given architecture |
| 7 | # with name "<name>.<arch>" if architecture can be targeted. |
| 8 | # add_compiler_rt_object_library(<name> <arch> |
| 9 | # SOURCES <source files> |
Alexey Samsonov | 05fa380 | 2013-09-16 15:50:53 +0000 | [diff] [blame] | 10 | # CFLAGS <compile flags> |
| 11 | # DEFS <compile definitions>) |
Alexey Samsonov | 392c50d | 2013-01-18 16:05:21 +0000 | [diff] [blame] | 12 | macro(add_compiler_rt_object_library name arch) |
| 13 | if(CAN_TARGET_${arch}) |
Alexey Samsonov | 05fa380 | 2013-09-16 15:50:53 +0000 | [diff] [blame] | 14 | parse_arguments(LIB "SOURCES;CFLAGS;DEFS" "" ${ARGN}) |
Alexey Samsonov | 392c50d | 2013-01-18 16:05:21 +0000 | [diff] [blame] | 15 | add_library(${name}.${arch} OBJECT ${LIB_SOURCES}) |
| 16 | set_target_compile_flags(${name}.${arch} |
Chandler Carruth | e7ad96d | 2014-05-15 15:21:11 +0000 | [diff] [blame] | 17 | ${CMAKE_CXX_FLAGS} ${TARGET_${arch}_CFLAGS} ${LIB_CFLAGS}) |
Alexey Samsonov | 05fa380 | 2013-09-16 15:50:53 +0000 | [diff] [blame] | 18 | set_property(TARGET ${name}.${arch} APPEND PROPERTY |
| 19 | COMPILE_DEFINITIONS ${LIB_DEFS}) |
Alexey Samsonov | 392c50d | 2013-01-18 16:05:21 +0000 | [diff] [blame] | 20 | else() |
| 21 | message(FATAL_ERROR "Archtecture ${arch} can't be targeted") |
| 22 | endif() |
| 23 | endmacro() |
| 24 | |
Alexander Potapenko | 4949674 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 25 | # Same as above, but adds universal osx library for either OSX or iOS simulator |
| 26 | # with name "<name>.<os>" targeting multiple architectures. |
| 27 | # add_compiler_rt_darwin_object_library(<name> <os> ARCH <architectures> |
| 28 | # SOURCES <source files> |
| 29 | # CFLAGS <compile flags> |
| 30 | # DEFS <compile definitions>) |
| 31 | macro(add_compiler_rt_darwin_object_library name os) |
Alexey Samsonov | 05fa380 | 2013-09-16 15:50:53 +0000 | [diff] [blame] | 32 | parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS" "" ${ARGN}) |
Alexander Potapenko | 4949674 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 33 | set(libname "${name}.${os}") |
Alexey Samsonov | 5162314 | 2013-01-20 14:36:12 +0000 | [diff] [blame] | 34 | add_library(${libname} OBJECT ${LIB_SOURCES}) |
Alexander Potapenko | 4949674 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 35 | set_target_compile_flags(${libname} ${LIB_CFLAGS} ${DARWIN_${os}_CFLAGS}) |
Alexey Samsonov | 2aad7c1 | 2013-01-21 08:12:20 +0000 | [diff] [blame] | 36 | set_target_properties(${libname} PROPERTIES OSX_ARCHITECTURES "${LIB_ARCH}") |
Alexey Samsonov | 05fa380 | 2013-09-16 15:50:53 +0000 | [diff] [blame] | 37 | set_property(TARGET ${libname} APPEND PROPERTY |
| 38 | COMPILE_DEFINITIONS ${LIB_DEFS}) |
Alexey Samsonov | 5162314 | 2013-01-20 14:36:12 +0000 | [diff] [blame] | 39 | endmacro() |
| 40 | |
Alexey Samsonov | e18b785 | 2014-03-31 13:45:36 +0000 | [diff] [blame] | 41 | # Adds static or shared runtime for a given architecture and puts it in the |
| 42 | # proper directory in the build and install trees. |
| 43 | # add_compiler_rt_runtime(<name> <arch> {STATIC,SHARED} |
| 44 | # SOURCES <source files> |
| 45 | # CFLAGS <compile flags> |
| 46 | # DEFS <compile definitions>) |
| 47 | macro(add_compiler_rt_runtime name arch type) |
Alexey Samsonov | e16af95 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 48 | if(CAN_TARGET_${arch}) |
Alexey Samsonov | d6535ea | 2014-04-01 13:16:30 +0000 | [diff] [blame] | 49 | parse_arguments(LIB "SOURCES;CFLAGS;DEFS;OUTPUT_NAME" "" ${ARGN}) |
Alexey Samsonov | e18b785 | 2014-03-31 13:45:36 +0000 | [diff] [blame] | 50 | add_library(${name} ${type} ${LIB_SOURCES}) |
Alexey Samsonov | e16af95 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 51 | # Setup compile flags and definitions. |
| 52 | set_target_compile_flags(${name} |
| 53 | ${TARGET_${arch}_CFLAGS} ${LIB_CFLAGS}) |
Alexey Samsonov | e18b785 | 2014-03-31 13:45:36 +0000 | [diff] [blame] | 54 | set_target_link_flags(${name} |
| 55 | ${TARGET_${arch}_CFLAGS} ${LIB_CFLAGS}) |
Alexey Samsonov | e16af95 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 56 | set_property(TARGET ${name} APPEND PROPERTY |
| 57 | COMPILE_DEFINITIONS ${LIB_DEFS}) |
| 58 | # Setup correct output directory in the build tree. |
| 59 | set_target_properties(${name} PROPERTIES |
Alexey Samsonov | e18b785 | 2014-03-31 13:45:36 +0000 | [diff] [blame] | 60 | ARCHIVE_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR} |
| 61 | LIBRARY_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR}) |
Alexey Samsonov | d6535ea | 2014-04-01 13:16:30 +0000 | [diff] [blame] | 62 | if (LIB_OUTPUT_NAME) |
| 63 | set_target_properties(${name} PROPERTIES |
| 64 | OUTPUT_NAME ${LIB_OUTPUT_NAME}) |
| 65 | endif() |
Alexey Samsonov | e16af95 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 66 | # Add installation command. |
| 67 | install(TARGETS ${name} |
Alexey Samsonov | e18b785 | 2014-03-31 13:45:36 +0000 | [diff] [blame] | 68 | ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR} |
| 69 | LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) |
Alexey Samsonov | e16af95 | 2013-01-20 13:58:10 +0000 | [diff] [blame] | 70 | else() |
| 71 | message(FATAL_ERROR "Archtecture ${arch} can't be targeted") |
| 72 | endif() |
| 73 | endmacro() |
| 74 | |
Alexey Samsonov | e18b785 | 2014-03-31 13:45:36 +0000 | [diff] [blame] | 75 | # Same as add_compiler_rt_runtime(... STATIC), but creates a universal library |
Alexey Samsonov | 2aad7c1 | 2013-01-21 08:12:20 +0000 | [diff] [blame] | 76 | # for several architectures. |
| 77 | # add_compiler_rt_osx_static_runtime(<name> ARCH <architectures> |
| 78 | # SOURCES <source files> |
| 79 | # CFLAGS <compile flags> |
| 80 | # DEFS <compile definitions>) |
| 81 | macro(add_compiler_rt_osx_static_runtime name) |
| 82 | parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS" "" ${ARGN}) |
| 83 | add_library(${name} STATIC ${LIB_SOURCES}) |
| 84 | set_target_compile_flags(${name} ${LIB_CFLAGS}) |
| 85 | set_property(TARGET ${name} APPEND PROPERTY |
| 86 | COMPILE_DEFINITIONS ${LIB_DEFS}) |
| 87 | set_target_properties(${name} PROPERTIES |
| 88 | OSX_ARCHITECTURES "${LIB_ARCH}" |
| 89 | ARCHIVE_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR}) |
| 90 | install(TARGETS ${name} |
| 91 | ARCHIVE DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) |
| 92 | endmacro() |
| 93 | |
Alexander Potapenko | 4949674 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 94 | # Adds dynamic runtime library on osx/iossim, which supports multiple |
| 95 | # architectures. |
| 96 | # add_compiler_rt_darwin_dynamic_runtime(<name> <os> |
| 97 | # ARCH <architectures> |
| 98 | # SOURCES <source files> |
| 99 | # CFLAGS <compile flags> |
| 100 | # DEFS <compile definitions> |
| 101 | # LINKFLAGS <link flags>) |
| 102 | macro(add_compiler_rt_darwin_dynamic_runtime name os) |
Alexey Samsonov | 2aad7c1 | 2013-01-21 08:12:20 +0000 | [diff] [blame] | 103 | parse_arguments(LIB "ARCH;SOURCES;CFLAGS;DEFS;LINKFLAGS" "" ${ARGN}) |
| 104 | add_library(${name} SHARED ${LIB_SOURCES}) |
Alexander Potapenko | 4949674 | 2013-11-07 10:08:19 +0000 | [diff] [blame] | 105 | set_target_compile_flags(${name} ${LIB_CFLAGS} ${DARWIN_${os}_CFLAGS}) |
| 106 | set_target_link_flags(${name} ${LIB_LINKFLAGS} ${DARWIN_${os}_LINKFLAGS}) |
Alexey Samsonov | 2aad7c1 | 2013-01-21 08:12:20 +0000 | [diff] [blame] | 107 | set_property(TARGET ${name} APPEND PROPERTY |
| 108 | COMPILE_DEFINITIONS ${LIB_DEFS}) |
| 109 | set_target_properties(${name} PROPERTIES |
| 110 | OSX_ARCHITECTURES "${LIB_ARCH}" |
| 111 | LIBRARY_OUTPUT_DIRECTORY ${COMPILER_RT_LIBRARY_OUTPUT_DIR}) |
| 112 | install(TARGETS ${name} |
| 113 | LIBRARY DESTINATION ${COMPILER_RT_LIBRARY_INSTALL_DIR}) |
| 114 | endmacro() |
| 115 | |
Timur Iskhodzhanov | a73e9db | 2014-05-30 12:42:57 +0000 | [diff] [blame] | 116 | set(COMPILER_RT_TEST_CFLAGS) |
| 117 | |
Alexey Samsonov | 392c50d | 2013-01-18 16:05:21 +0000 | [diff] [blame] | 118 | # Unittests support. |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 119 | set(COMPILER_RT_GTEST_PATH ${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest) |
Chandler Carruth | ace5350 | 2013-11-15 10:21:15 +0000 | [diff] [blame] | 120 | set(COMPILER_RT_GTEST_SOURCE ${COMPILER_RT_GTEST_PATH}/src/gtest-all.cc) |
Alexey Samsonov | 1e5d8be | 2014-03-24 13:29:20 +0000 | [diff] [blame] | 121 | set(COMPILER_RT_GTEST_CFLAGS |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 122 | -DGTEST_NO_LLVM_RAW_OSTREAM=1 |
Timur Iskhodzhanov | 402bcb5 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 123 | -DGTEST_HAS_RTTI=0 |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 124 | -I${COMPILER_RT_GTEST_PATH}/include |
Chandler Carruth | ace5350 | 2013-11-15 10:21:15 +0000 | [diff] [blame] | 125 | -I${COMPILER_RT_GTEST_PATH} |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 126 | ) |
| 127 | |
Timur Iskhodzhanov | 402bcb5 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 128 | if(MSVC) |
Timur Iskhodzhanov | a73e9db | 2014-05-30 12:42:57 +0000 | [diff] [blame] | 129 | # clang doesn't support exceptions on Windows yet. |
| 130 | list(APPEND COMPILER_RT_TEST_CFLAGS |
| 131 | -D_HAS_EXCEPTIONS=0) |
| 132 | |
| 133 | # We should teach clang to understand "#pragma intrinsic", see PR19898. |
| 134 | list(APPEND COMPILER_RT_TEST_CFLAGS -Wno-undefined-inline) |
| 135 | |
Timur Iskhodzhanov | 402bcb5 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 136 | # Clang doesn't support SEH on Windows yet. |
| 137 | list(APPEND COMPILER_RT_GTEST_CFLAGS -DGTEST_HAS_SEH=0) |
Timur Iskhodzhanov | a73e9db | 2014-05-30 12:42:57 +0000 | [diff] [blame] | 138 | |
| 139 | # gtest use a lot of stuff marked as deprecated on Windows. |
| 140 | list(APPEND COMPILER_RT_GTEST_CFLAGS -Wno-deprecated-declarations) |
Ehsan Akhgari | 1c4db80 | 2014-09-15 11:33:50 +0000 | [diff] [blame^] | 141 | |
| 142 | # Visual Studio 2012 only supports up to 8 template parameters in |
| 143 | # std::tr1::tuple by default, but gtest requires 10 |
| 144 | if(MSVC_VERSION EQUAL 1700) |
| 145 | add_definitions(-D_VARIADIC_MAX=10) |
| 146 | endif() |
Timur Iskhodzhanov | 402bcb5 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 147 | endif() |
| 148 | |
Alexey Samsonov | 17cf7c5 | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 149 | # Link objects into a single executable with COMPILER_RT_TEST_COMPILER, |
| 150 | # using specified link flags. Make executable a part of provided |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 151 | # test_suite. |
| 152 | # add_compiler_rt_test(<test_suite> <test_name> |
| 153 | # OBJECTS <object files> |
| 154 | # DEPS <deps (e.g. runtime libs)> |
| 155 | # LINK_FLAGS <link flags>) |
| 156 | macro(add_compiler_rt_test test_suite test_name) |
| 157 | parse_arguments(TEST "OBJECTS;DEPS;LINK_FLAGS" "" ${ARGN}) |
Alexey Samsonov | f6acafc | 2013-01-28 07:16:22 +0000 | [diff] [blame] | 158 | set(output_bin "${CMAKE_CURRENT_BINARY_DIR}/${test_name}") |
Alexey Samsonov | 17cf7c5 | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 159 | # Use host compiler in a standalone build, and just-built Clang otherwise. |
| 160 | if(NOT COMPILER_RT_STANDALONE_BUILD) |
| 161 | list(APPEND TEST_DEPS clang) |
| 162 | endif() |
Chandler Carruth | 272eef9 | 2014-05-15 16:33:58 +0000 | [diff] [blame] | 163 | # If we're not on MSVC, include the linker flags from CMAKE but override them |
| 164 | # with the provided link flags. This ensures that flags which are required to |
| 165 | # link programs at all are included, but the changes needed for the test |
| 166 | # trump. With MSVC we can't do that because CMake is set up to run link.exe |
| 167 | # when linking, not the compiler. Here, we hack it to use the compiler |
| 168 | # because we want to use -fsanitize flags. |
| 169 | if(NOT MSVC) |
| 170 | set(TEST_LINK_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${TEST_LINK_FLAGS}") |
| 171 | separate_arguments(TEST_LINK_FLAGS) |
| 172 | endif() |
Alexey Samsonov | a74424e | 2013-01-28 09:07:30 +0000 | [diff] [blame] | 173 | add_custom_target(${test_name} |
Timur Iskhodzhanov | 7c70734 | 2014-05-12 08:55:20 +0000 | [diff] [blame] | 174 | COMMAND ${COMPILER_RT_TEST_COMPILER} ${TEST_OBJECTS} |
Timur Iskhodzhanov | 402bcb5 | 2014-05-28 08:38:13 +0000 | [diff] [blame] | 175 | -o "${output_bin}" |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 176 | ${TEST_LINK_FLAGS} |
Alexey Samsonov | 17cf7c5 | 2014-02-19 13:01:03 +0000 | [diff] [blame] | 177 | DEPENDS ${TEST_DEPS}) |
Alexey Samsonov | 02dcc63 | 2012-12-19 12:33:39 +0000 | [diff] [blame] | 178 | # Make the test suite depend on the binary. |
| 179 | add_dependencies(${test_suite} ${test_name}) |
| 180 | endmacro() |
Alexey Samsonov | c1caace | 2013-05-21 13:48:27 +0000 | [diff] [blame] | 181 | |
| 182 | macro(add_compiler_rt_resource_file target_name file_name) |
| 183 | set(src_file "${CMAKE_CURRENT_SOURCE_DIR}/${file_name}") |
Alexey Samsonov | a52e2dc | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 184 | set(dst_file "${COMPILER_RT_OUTPUT_DIR}/${file_name}") |
Alexey Samsonov | 41bf0bc | 2014-02-27 07:22:59 +0000 | [diff] [blame] | 185 | add_custom_command(OUTPUT ${dst_file} |
| 186 | DEPENDS ${src_file} |
Alexey Samsonov | c1caace | 2013-05-21 13:48:27 +0000 | [diff] [blame] | 187 | COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src_file} ${dst_file} |
Alexey Samsonov | 41bf0bc | 2014-02-27 07:22:59 +0000 | [diff] [blame] | 188 | COMMENT "Copying ${file_name}...") |
| 189 | add_custom_target(${target_name} DEPENDS ${dst_file}) |
Alexey Samsonov | c1caace | 2013-05-21 13:48:27 +0000 | [diff] [blame] | 190 | # Install in Clang resource directory. |
Alexey Samsonov | a52e2dc | 2014-02-18 14:28:53 +0000 | [diff] [blame] | 191 | install(FILES ${file_name} DESTINATION ${COMPILER_RT_INSTALL_PATH}) |
Alexey Samsonov | c1caace | 2013-05-21 13:48:27 +0000 | [diff] [blame] | 192 | endmacro() |
Evgeniy Stepanov | 9514ed1 | 2014-02-27 08:41:40 +0000 | [diff] [blame] | 193 | |
| 194 | macro(add_compiler_rt_script name) |
| 195 | set(dst ${COMPILER_RT_EXEC_OUTPUT_DIR}/${name}) |
| 196 | set(src ${CMAKE_CURRENT_SOURCE_DIR}/${name}) |
| 197 | add_custom_command(OUTPUT ${dst} |
| 198 | DEPENDS ${src} |
| 199 | COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src} ${dst} |
| 200 | COMMENT "Copying ${name}...") |
| 201 | add_custom_target(${name} DEPENDS ${dst}) |
| 202 | install(FILES ${dst} |
| 203 | PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE |
| 204 | DESTINATION ${COMPILER_RT_INSTALL_PATH}/bin) |
| 205 | endmacro(add_compiler_rt_script src name) |
Alexey Samsonov | 2e8e441 | 2014-05-09 22:11:03 +0000 | [diff] [blame] | 206 | |
| 207 | # Builds custom version of libc++ and installs it in <prefix>. |
| 208 | # Can be used to build sanitized versions of libc++ for running unit tests. |
| 209 | # add_custom_libcxx(<name> <prefix> |
| 210 | # DEPS <list of build deps> |
| 211 | # CFLAGS <list of compile flags>) |
| 212 | macro(add_custom_libcxx name prefix) |
| 213 | if(NOT COMPILER_RT_HAS_LIBCXX_SOURCES) |
| 214 | message(FATAL_ERROR "libcxx not found!") |
| 215 | endif() |
| 216 | |
| 217 | parse_arguments(LIBCXX "DEPS;CFLAGS" "" ${ARGN}) |
| 218 | foreach(flag ${LIBCXX_CFLAGS}) |
| 219 | set(flagstr "${flagstr} ${flag}") |
| 220 | endforeach() |
| 221 | set(LIBCXX_CFLAGS ${flagstr}) |
| 222 | |
| 223 | if(NOT COMPILER_RT_STANDALONE_BUILD) |
| 224 | list(APPEND LIBCXX_DEPS clang) |
| 225 | endif() |
| 226 | |
| 227 | ExternalProject_Add(${name} |
| 228 | PREFIX ${prefix} |
| 229 | SOURCE_DIR ${COMPILER_RT_LIBCXX_PATH} |
| 230 | CMAKE_ARGS -DCMAKE_C_COMPILER=${COMPILER_RT_TEST_COMPILER} |
| 231 | -DCMAKE_CXX_COMPILER=${COMPILER_RT_TEST_COMPILER} |
| 232 | -DCMAKE_C_FLAGS=${LIBCXX_CFLAGS} |
| 233 | -DCMAKE_CXX_FLAGS=${LIBCXX_CFLAGS} |
| 234 | -DCMAKE_BUILD_TYPE=Release |
| 235 | -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR> |
Alexey Samsonov | 19de1ba | 2014-05-12 21:07:28 +0000 | [diff] [blame] | 236 | LOG_BUILD 1 |
| 237 | LOG_CONFIGURE 1 |
| 238 | LOG_INSTALL 1 |
Alexey Samsonov | 2e8e441 | 2014-05-09 22:11:03 +0000 | [diff] [blame] | 239 | ) |
| 240 | |
| 241 | ExternalProject_Add_Step(${name} force-reconfigure |
| 242 | DEPENDERS configure |
| 243 | ALWAYS 1 |
| 244 | ) |
| 245 | |
| 246 | ExternalProject_Add_Step(${name} clobber |
| 247 | COMMAND ${CMAKE_COMMAND} -E remove_directory <BINARY_DIR> |
| 248 | COMMAND ${CMAKE_COMMAND} -E make_directory <BINARY_DIR> |
| 249 | COMMENT "Clobberring ${name} build directory..." |
| 250 | DEPENDERS configure |
| 251 | DEPENDS ${LIBCXX_DEPS} |
| 252 | ) |
| 253 | endmacro() |