blob: ab35749fce24a8eae0a6abeef83c4899d7540482 [file] [log] [blame]
Oscar Fuentes67410b32011-02-03 20:57:53 +00001# If we are not building as a part of LLVM, build Clang as an
2# standalone project, using LLVM as an external library:
3if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
4 project(Clang)
5 cmake_minimum_required(VERSION 2.8)
6
7 set(CLANG_PATH_TO_LLVM_SOURCE "" CACHE PATH
8 "Path to LLVM source code. Not necessary if using an installed LLVM.")
9 set(CLANG_PATH_TO_LLVM_BUILD "" CACHE PATH
10 "Path to the directory where LLVM was built or installed.")
11
12 if( CLANG_PATH_TO_LLVM_SOURCE )
13 if( NOT EXISTS "${CLANG_PATH_TO_LLVM_SOURCE}/cmake/config-ix.cmake" )
14 message(FATAL_ERROR "Please set CLANG_PATH_TO_LLVM_SOURCE to the root directory of LLVM source code.")
15 else()
16 get_filename_component(LLVM_MAIN_SRC_DIR ${CLANG_PATH_TO_LLVM_SOURCE}
17 ABSOLUTE)
18 list(APPEND CMAKE_MODULE_PATH "${LLVM_MAIN_SRC_DIR}/cmake/modules")
19 endif()
20 endif()
21
Hans Wennborge90340a2013-08-23 18:05:24 +000022 if (EXISTS "${CLANG_PATH_TO_LLVM_BUILD}/bin/llvm-config${CMAKE_EXECUTABLE_SUFFIX}")
23 set (PATH_TO_LLVM_CONFIG "${CLANG_PATH_TO_LLVM_BUILD}/bin/llvm-config${CMAKE_EXECUTABLE_SUFFIX}")
24 elseif (EXISTS "${CLANG_PATH_TO_LLVM_BUILD}/bin/Debug/llvm-config${CMAKE_EXECUTABLE_SUFFIX}")
25 # Looking for bin/Debug/llvm-config is a complete hack. How can we get
Douglas Gregor17031a22011-07-14 23:42:32 +000026 # around this?
Hans Wennborge90340a2013-08-23 18:05:24 +000027 set (PATH_TO_LLVM_CONFIG "${CLANG_PATH_TO_LLVM_BUILD}/bin/Debug/llvm-config${CMAKE_EXECUTABLE_SUFFIX}")
28 else()
29 message(FATAL_ERROR "Please set CLANG_PATH_TO_LLVM_BUILD to a directory containing a LLVM build.")
Oscar Fuentes67410b32011-02-03 20:57:53 +000030 endif()
31
32 list(APPEND CMAKE_MODULE_PATH "${CLANG_PATH_TO_LLVM_BUILD}/share/llvm/cmake")
33
34 get_filename_component(PATH_TO_LLVM_BUILD ${CLANG_PATH_TO_LLVM_BUILD}
35 ABSOLUTE)
36
Hans Wennborg885e36e2013-08-24 00:22:23 +000037 option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
38
Oscar Fuentes67410b32011-02-03 20:57:53 +000039 include(AddLLVM)
40 include(TableGen)
Oscar Fuentes5ec8a4d2011-04-10 16:17:31 +000041 include("${CLANG_PATH_TO_LLVM_BUILD}/share/llvm/cmake/LLVMConfig.cmake")
Oscar Fuentes67410b32011-02-03 20:57:53 +000042 include(HandleLLVMOptions)
43
44 set(PACKAGE_VERSION "${LLVM_PACKAGE_VERSION}")
45
46 set(LLVM_MAIN_INCLUDE_DIR "${LLVM_MAIN_SRC_DIR}/include")
47 set(LLVM_BINARY_DIR ${CMAKE_BINARY_DIR})
48
Oscar Fuentesb641f082011-02-14 20:14:11 +000049 set(CMAKE_INCLUDE_CURRENT_DIR ON)
Oscar Fuentes67410b32011-02-03 20:57:53 +000050 include_directories("${PATH_TO_LLVM_BUILD}/include" "${LLVM_MAIN_INCLUDE_DIR}")
Oscar Fuentes67410b32011-02-03 20:57:53 +000051 link_directories("${PATH_TO_LLVM_BUILD}/lib")
52
Hans Wennborgecc0df52013-08-23 18:20:47 +000053 exec_program("${PATH_TO_LLVM_CONFIG} --bindir" OUTPUT_VARIABLE LLVM_BINARY_DIR)
54 set(LLVM_TABLEGEN_EXE "${LLVM_BINARY_DIR}/llvm-tblgen${CMAKE_EXECUTABLE_SUFFIX}")
Oscar Fuentes67410b32011-02-03 20:57:53 +000055
Chandler Carruth9224fb82012-07-02 20:52:55 +000056 # Define the default arguments to use with 'lit', and an option for the user
57 # to override.
58 set(LIT_ARGS_DEFAULT "-sv")
59 if (MSVC OR XCODE)
60 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
61 endif()
62 set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
63
Oscar Fuentes67410b32011-02-03 20:57:53 +000064 set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin )
65 set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib )
66 set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib )
67
Jeffrey Yasskin718b01d2011-02-15 07:54:28 +000068 set( CLANG_BUILT_STANDALONE 1 )
Douglas Gregora34173e2012-12-18 19:39:40 +000069
70 find_package(LibXml2)
71 if (LIBXML2_FOUND)
72 set(CLANG_HAVE_LIBXML 1)
73 endif ()
Oscar Fuentes67410b32011-02-03 20:57:53 +000074endif()
Douglas Gregor34d9ffa2009-09-16 21:59:05 +000075
Oscar Fuentes2100fe92011-02-03 22:48:20 +000076set(CLANG_RESOURCE_DIR "" CACHE STRING
77 "Relative directory from the Clang binary to its resource files.")
78
79set(C_INCLUDE_DIRS "" CACHE STRING
80 "Colon separated list of directories clang will search for headers.")
81
Sebastian Pop4762a2d2012-04-16 04:16:43 +000082set(GCC_INSTALL_PREFIX "" CACHE PATH "Directory where gcc is installed." )
83set(DEFAULT_SYSROOT "" CACHE PATH
84 "Default <path> to all compiler invocations for --sysroot=<path>." )
85
Oscar Fuentesf752d5b2011-05-20 15:57:59 +000086set(CLANG_VENDOR "" CACHE STRING
87 "Vendor-specific text for showing with version information.")
88
89if( CLANG_VENDOR )
90 add_definitions( -DCLANG_VENDOR="${CLANG_VENDOR} " )
91endif()
92
Michael Gottesmana8c0e4f2013-08-15 19:22:33 +000093set(CLANG_REPOSITORY_STRING "" CACHE STRING
94 "Vendor-specific text for showing the repository the source is taken from.")
95
96if(CLANG_REPOSITORY_STRING)
97 add_definitions(-DCLANG_REPOSITORY_STRING="${CLANG_REPOSITORY_STRING}")
98endif()
99
Michael Gottesmanf3535112013-08-15 19:22:36 +0000100set(CLANG_VENDOR_UTI "org.llvm.clang" CACHE STRING
101 "Vendor-specific uti.")
102
Daniel Dunbar91ee77a2009-09-17 00:07:10 +0000103set(CLANG_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
104set(CLANG_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
105
Chandler Carruth63e9c0d2010-04-17 20:12:02 +0000106if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
107 message(FATAL_ERROR "In-source builds are not allowed. CMake would overwrite "
108"the makefiles distributed with LLVM. Please create a directory and run cmake "
109"from there, passing the path to this source directory as the last argument. "
110"This process created the file `CMakeCache.txt' and the directory "
111"`CMakeFiles'. Please delete them.")
112endif()
113
114if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
115 file(GLOB_RECURSE
116 tablegenned_files_on_include_dir
117 "${CLANG_SOURCE_DIR}/include/clang/*.inc")
118 if( tablegenned_files_on_include_dir )
119 message(FATAL_ERROR "Apparently there is a previous in-source build, "
120"probably as the result of running `configure' and `make' on "
121"${CLANG_SOURCE_DIR}. This may cause problems. The suspicious files are:\n"
122"${tablegenned_files_on_include_dir}\nPlease clean the source directory.")
123 endif()
124endif()
125
Daniel Dunbarc4b8e922010-06-25 23:34:47 +0000126# Compute the Clang version from the LLVM version.
Michael J. Spencer5a7f3492010-09-10 21:13:16 +0000127string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION
Daniel Dunbarc4b8e922010-06-25 23:34:47 +0000128 ${PACKAGE_VERSION})
Douglas Gregor34d9ffa2009-09-16 21:59:05 +0000129message(STATUS "Clang version: ${CLANG_VERSION}")
Douglas Gregor7f7b7482009-08-23 05:28:29 +0000130
Daniel Dunbara5107672010-06-25 17:33:46 +0000131string(REGEX REPLACE "([0-9]+)\\.[0-9]+(\\.[0-9]+)?" "\\1" CLANG_VERSION_MAJOR
132 ${CLANG_VERSION})
133string(REGEX REPLACE "[0-9]+\\.([0-9]+)(\\.[0-9]+)?" "\\1" CLANG_VERSION_MINOR
134 ${CLANG_VERSION})
135if (${CLANG_VERSION} MATCHES "[0-9]+\\.[0-9]+\\.[0-9]+")
136 set(CLANG_HAS_VERSION_PATCHLEVEL 1)
137 string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" CLANG_VERSION_PATCHLEVEL
138 ${CLANG_VERSION})
139else()
140 set(CLANG_HAS_VERSION_PATCHLEVEL 0)
141endif()
142
143# Configure the Version.inc file.
144configure_file(
145 ${CMAKE_CURRENT_SOURCE_DIR}/include/clang/Basic/Version.inc.in
146 ${CMAKE_CURRENT_BINARY_DIR}/include/clang/Basic/Version.inc)
147
Douglas Gregor9df3faf2009-09-18 14:47:57 +0000148# Add appropriate flags for GCC
Oscar Fuentesc5cd2522011-05-11 13:53:30 +0000149if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
Richard Smith19258e82013-04-22 14:51:21 +0000150 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -Wcast-qual -fno-strict-aliasing")
151
152 # Enable -pedantic for Clang even if it's not enabled for LLVM.
153 if (NOT LLVM_ENABLE_PEDANTIC)
154 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wno-long-long")
155 endif ()
Jordan Rose549a2922013-03-02 00:49:47 +0000156
157 check_cxx_compiler_flag("-Werror -Wnested-anon-types" CXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG)
158 if( CXX_SUPPORTS_NO_NESTED_ANON_TYPES_FLAG )
159 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-nested-anon-types" )
160 endif()
Douglas Gregor9df3faf2009-09-18 14:47:57 +0000161endif ()
162
Douglas Gregoreb5dc492010-06-08 19:23:49 +0000163if (APPLE)
Andy Gibbs39bdd4f2013-06-12 20:02:59 +0000164 set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
Douglas Gregoreb5dc492010-06-08 19:23:49 +0000165endif ()
166
Oscar Fuentes2100fe92011-02-03 22:48:20 +0000167configure_file(
168 ${CLANG_SOURCE_DIR}/include/clang/Config/config.h.cmake
169 ${CLANG_BINARY_DIR}/include/clang/Config/config.h)
170
Oscar Fuentesc8da1ec2011-02-20 22:06:32 +0000171include(LLVMParseArguments)
172
173function(clang_tablegen)
174 # Syntax:
175 # clang_tablegen output-file [tablegen-arg ...] SOURCE source-file
176 # [[TARGET cmake-target-name] [DEPENDS extra-dependency ...]]
177 #
178 # Generates a custom command for invoking tblgen as
179 #
180 # tblgen source-file -o=output-file tablegen-arg ...
181 #
182 # and, if cmake-target-name is provided, creates a custom target for
183 # executing the custom command depending on output-file. It is
184 # possible to list more files to depend after DEPENDS.
185
186 parse_arguments( CTG "SOURCE;TARGET;DEPENDS" "" ${ARGN} )
187
188 if( NOT CTG_SOURCE )
189 message(FATAL_ERROR "SOURCE source-file required by clang_tablegen")
190 endif()
191
192 set( LLVM_TARGET_DEFINITIONS ${CTG_SOURCE} )
Peter Collingbourne51d77772011-10-06 13:03:08 +0000193 tablegen( CLANG ${CTG_DEFAULT_ARGS} )
Oscar Fuentesc8da1ec2011-02-20 22:06:32 +0000194
195 list( GET CTG_DEFAULT_ARGS 0 output_file )
196 if( CTG_TARGET )
197 add_custom_target( ${CTG_TARGET} DEPENDS ${output_file} ${CTG_DEPENDS} )
Oscar Fuentesa3f787c2011-02-20 22:06:44 +0000198 set_target_properties( ${CTG_TARGET} PROPERTIES FOLDER "Clang tablegenning")
Oscar Fuentesc8da1ec2011-02-20 22:06:32 +0000199 endif()
200endfunction(clang_tablegen)
201
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000202macro(add_clang_library name)
Oscar Fuentes99174012011-01-03 17:00:02 +0000203 llvm_process_sources(srcs ${ARGN})
Ted Kremenekbf5de3f2009-03-25 20:34:07 +0000204 if(MSVC_IDE OR XCODE)
Jordan Rose340d0d32012-10-23 21:54:03 +0000205 # Add public headers
206 file(RELATIVE_PATH lib_path
207 ${CLANG_SOURCE_DIR}/lib/
208 ${CMAKE_CURRENT_SOURCE_DIR}
209 )
210 if(NOT lib_path MATCHES "^[.][.]")
211 file( GLOB_RECURSE headers
212 ${CLANG_SOURCE_DIR}/include/clang/${lib_path}/*.h
213 ${CLANG_SOURCE_DIR}/include/clang/${lib_path}/*.def
214 )
215 set_source_files_properties(${headers} PROPERTIES HEADER_FILE_ONLY ON)
216
217 file( GLOB_RECURSE tds
218 ${CLANG_SOURCE_DIR}/include/clang/${lib_path}/*.td
219 )
220 source_group("TableGen descriptions" FILES ${tds})
221 set_source_files_properties(${tds}} PROPERTIES HEADER_FILE_ONLY ON)
222
223 set(srcs ${srcs} ${headers} ${tds})
224 endif()
Ted Kremenekbf5de3f2009-03-25 20:34:07 +0000225 endif(MSVC_IDE OR XCODE)
Douglas Gregoreb5dc492010-06-08 19:23:49 +0000226 if (MODULE)
227 set(libkind MODULE)
228 elseif (SHARED_LIBRARY)
Douglas Gregorac47bc72009-09-25 06:35:15 +0000229 set(libkind SHARED)
230 else()
231 set(libkind)
232 endif()
233 add_library( ${name} ${libkind} ${srcs} )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000234 if( LLVM_COMMON_DEPENDS )
235 add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
236 endif( LLVM_COMMON_DEPENDS )
Oscar Fuentesfb767c82011-03-29 20:51:00 +0000237
Oscar Fuentesfb767c82011-03-29 20:51:00 +0000238 llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
239 target_link_libraries( ${name} ${LLVM_COMMON_LIBS} )
240 link_system_libs( ${name} )
241
Hans Wennborg885e36e2013-08-24 00:22:23 +0000242 if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY OR ${name} STREQUAL "libclang")
243 install(TARGETS ${name}
244 LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
245 ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}
246 RUNTIME DESTINATION bin)
247 endif()
248
Oscar Fuentesa3f787c2011-02-20 22:06:44 +0000249 set_target_properties(${name} PROPERTIES FOLDER "Clang libraries")
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000250endmacro(add_clang_library)
251
252macro(add_clang_executable name)
Oscar Fuentes99174012011-01-03 17:00:02 +0000253 add_llvm_executable( ${name} ${ARGN} )
Oscar Fuentesa3f787c2011-02-20 22:06:44 +0000254 set_target_properties(${name} PROPERTIES FOLDER "Clang executables")
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000255endmacro(add_clang_executable)
256
Oscar Fuentes617508f2011-03-17 19:03:04 +0000257include_directories(BEFORE
Douglas Gregora393e9e2009-03-16 23:06:59 +0000258 ${CMAKE_CURRENT_BINARY_DIR}/include
Oscar Fuentes617508f2011-03-17 19:03:04 +0000259 ${CMAKE_CURRENT_SOURCE_DIR}/include
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000260 )
261
Hans Wennborg885e36e2013-08-24 00:22:23 +0000262if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
263 install(DIRECTORY include/
264 DESTINATION include
265 FILES_MATCHING
266 PATTERN "*.def"
267 PATTERN "*.h"
268 PATTERN "config.h" EXCLUDE
269 PATTERN ".svn" EXCLUDE
270 )
Chris Lattnerbc6ec752008-11-11 18:39:10 +0000271
Hans Wennborg885e36e2013-08-24 00:22:23 +0000272 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
273 DESTINATION include
274 FILES_MATCHING
275 PATTERN "CMakeFiles" EXCLUDE
276 PATTERN "*.inc"
277 )
278endif()
279
280install(DIRECTORY include/clang-c
Kovarththanan Rajaratnamec700a62010-04-01 14:24:41 +0000281 DESTINATION include
282 FILES_MATCHING
Hans Wennborg885e36e2013-08-24 00:22:23 +0000283 PATTERN "*.h"
284 PATTERN ".svn" EXCLUDE
Kovarththanan Rajaratnamec700a62010-04-01 14:24:41 +0000285 )
286
Dylan Noblesmithcc8a9452012-02-14 15:54:49 +0000287add_definitions( -D_GNU_SOURCE )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000288
Jordan Rosee6385032013-08-22 15:50:02 +0000289option(CLANG_ENABLE_ARCMT "Build ARCMT." ON)
290option(CLANG_ENABLE_REWRITER "Build rewriter." ON)
291option(CLANG_ENABLE_STATIC_ANALYZER "Build static analyzer." ON)
Roman Divackyff62d642013-05-29 21:09:18 +0000292
293if (NOT CLANG_ENABLE_REWRITER AND CLANG_ENABLE_ARCMT)
294 message(FATAL_ERROR "Cannot disable rewriter while enabling ARCMT")
295endif()
296
297if (NOT CLANG_ENABLE_REWRITER AND CLANG_ENABLE_STATIC_ANALYZER)
298 message(FATAL_ERROR "Cannot disable rewriter while enabling static analyzer")
299endif()
300
Jordan Rosee6385032013-08-22 15:50:02 +0000301if (NOT CLANG_ENABLE_STATIC_ANALYZER AND CLANG_ENABLE_ARCMT)
302 message(FATAL_ERROR "Cannot disable static analyzer while enabling ARCMT")
303endif()
304
Roman Divackyff62d642013-05-29 21:09:18 +0000305if(CLANG_ENABLE_ARCMT)
306 add_definitions(-DCLANG_ENABLE_ARCMT)
307endif()
308if(CLANG_ENABLE_REWRITER)
309 add_definitions(-DCLANG_ENABLE_REWRITER)
310endif()
311if(CLANG_ENABLE_STATIC_ANALYZER)
312 add_definitions(-DCLANG_ENABLE_STATIC_ANALYZER)
313endif()
NAKAMURA Takumi68f22af2012-12-13 16:24:59 +0000314
Douglas Gregor8435bf92011-02-25 19:24:02 +0000315# Clang version information
316set(CLANG_EXECUTABLE_VERSION
317 "${CLANG_VERSION_MAJOR}.${CLANG_VERSION_MINOR}" CACHE STRING
318 "Version number that will be placed into the clang executable, in the form XX.YY")
319set(LIBCLANG_LIBRARY_VERSION
320 "${CLANG_VERSION_MAJOR}.${CLANG_VERSION_MINOR}" CACHE STRING
321 "Version number that will be placed into the libclang library , in the form XX.YY")
322mark_as_advanced(CLANG_EXECUTABLE_VERSION LIBCLANG_LIBRARY_VERSION)
323
Peter Collingbourne51d77772011-10-06 13:03:08 +0000324add_subdirectory(utils/TableGen)
Douglas Gregor8435bf92011-02-25 19:24:02 +0000325
Douglas Gregora393e9e2009-03-16 23:06:59 +0000326add_subdirectory(include)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000327add_subdirectory(lib)
Daniel Dunbarcbcd98b2009-03-24 02:52:57 +0000328add_subdirectory(tools)
Michael J. Spencer48263ba2010-12-16 03:28:42 +0000329add_subdirectory(runtime)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000330
NAKAMURA Takumie3120ae2012-07-27 06:17:48 +0000331option(CLANG_BUILD_EXAMPLES "Build CLANG example programs by default." OFF)
332add_subdirectory(examples)
333
Jordan Rose3092d9d2013-02-08 01:42:37 +0000334option(CLANG_INCLUDE_TESTS
335 "Generate build targets for the Clang unit tests."
Jordan Rose6bbaa772013-02-08 07:28:25 +0000336 ${LLVM_INCLUDE_TESTS})
Jordan Rose3092d9d2013-02-08 01:42:37 +0000337
Alexey Samsonov863fb352013-02-26 09:43:27 +0000338# TODO: docs.
Alexey Samsonov863fb352013-02-26 09:43:27 +0000339
Jordan Rose3092d9d2013-02-08 01:42:37 +0000340if( CLANG_INCLUDE_TESTS )
Michael Gottesman7758bb52013-08-20 07:09:54 +0000341 add_subdirectory(test)
Jordan Rose3092d9d2013-02-08 01:42:37 +0000342 add_subdirectory(unittests)
Jeffrey Yasskin718b01d2011-02-15 07:54:28 +0000343endif()
NAKAMURA Takumi792f9752011-02-16 03:07:15 +0000344
345# Workaround for MSVS10 to avoid the Dialog Hell
346# FIXME: This could be removed with future version of CMake.
347if( CLANG_BUILT_STANDALONE AND MSVC_VERSION EQUAL 1600 )
348 set(CLANG_SLN_FILENAME "${CMAKE_CURRENT_BINARY_DIR}/Clang.sln")
349 if( EXISTS "${CLANG_SLN_FILENAME}" )
350 file(APPEND "${CLANG_SLN_FILENAME}" "\n# This should be regenerated!\n")
351 endif()
352endif()
Chad Rosierfc614272011-08-02 20:44:34 +0000353
354set(BUG_REPORT_URL "http://llvm.org/bugs/" CACHE STRING
355 "Default URL where bug reports are to be submitted.")
Michael Gottesmanf65456f2013-08-20 07:41:18 +0000356
Michael Gottesman54b00122013-08-27 04:40:12 +0000357set(CLANG_ORDER_FILE "" CACHE FILEPATH
358 "Order file to use when compiling clang in order to improve startup time.")