blob: afcc9f0ce2ab42b4a46aec09beb9fe9b7d82285a [file] [log] [blame]
Oscar Fuentesfff33a32009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Chris Bieneman9d9da0d2015-02-09 22:07:49 +00003cmake_minimum_required(VERSION 2.8.8)
4
5# FIXME: It may be removed when we use 2.8.12.
6if(CMAKE_VERSION VERSION_LESS 2.8.12)
7 # Invalidate a couple of keywords.
8 set(cmake_2_8_12_INTERFACE)
9 set(cmake_2_8_12_PRIVATE)
10else()
11 # Use ${cmake_2_8_12_KEYWORD} intead of KEYWORD in target_link_libraries().
12 set(cmake_2_8_12_INTERFACE INTERFACE)
13 set(cmake_2_8_12_PRIVATE PRIVATE)
14 if(POLICY CMP0022)
15 cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required
16 endif()
17endif()
NAKAMURA Takumi9cd9ad62014-02-26 06:45:11 +000018
Peter Collingbournea7fb5cf2014-11-17 22:16:15 +000019if(CMAKE_VERSION VERSION_LESS 3.1.20141117)
20 set(cmake_3_2_USES_TERMINAL)
21else()
22 set(cmake_3_2_USES_TERMINAL USES_TERMINAL)
23endif()
24
NAKAMURA Takumi85d65ff2014-02-02 16:59:36 +000025project(LLVM)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000026
Evgeniy Stepanovf1c3817382014-11-19 10:30:02 +000027# The following only works with the Ninja generator in CMake >= 3.0.
28set(LLVM_PARALLEL_COMPILE_JOBS "" CACHE STRING
29 "Define the maximum number of concurrent compilation jobs.")
30if(LLVM_PARALLEL_COMPILE_JOBS)
31 set_property(GLOBAL APPEND PROPERTY JOB_POOLS compile_job_pool=${LLVM_PARALLEL_COMPILE_JOBS})
32 set(CMAKE_JOB_POOL_COMPILE compile_job_pool)
33endif()
34
35set(LLVM_PARALLEL_LINK_JOBS "" CACHE STRING
36 "Define the maximum number of concurrent link jobs.")
37if(LLVM_PARALLEL_LINK_JOBS)
38 set_property(GLOBAL APPEND PROPERTY JOB_POOLS link_job_pool=${LLVM_PARALLEL_LINK_JOBS})
39 set(CMAKE_JOB_POOL_LINK link_job_pool)
40endif()
41
Oscar Fuentes052c23c2010-08-03 17:28:09 +000042# Add path for custom modules
43set(CMAKE_MODULE_PATH
44 ${CMAKE_MODULE_PATH}
45 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
46 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
47 )
48
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000049set(LLVM_VERSION_MAJOR 3)
Hans Wennborgd94a5f02015-01-14 17:38:03 +000050set(LLVM_VERSION_MINOR 7)
Tom Stellarde6ba81d2014-03-03 15:22:00 +000051set(LLVM_VERSION_PATCH 0)
Dylan Noblesmithc6c7a582012-02-13 18:48:10 +000052
Hans Wennborg09d108b2013-11-21 22:47:21 +000053if (NOT PACKAGE_VERSION)
Tom Stellarde6ba81d2014-03-03 15:22:00 +000054 set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}svn")
Hans Wennborg09d108b2013-11-21 22:47:21 +000055endif()
Oscar Fuentes70640352010-12-20 09:47:13 +000056
Hans Wennborg16546272013-08-24 00:20:36 +000057option(LLVM_INSTALL_TOOLCHAIN_ONLY "Only include toolchain files in the 'install' target." OFF)
58
Manuel Klimek13cfa002012-05-09 15:10:54 +000059option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio. Disable for Express versions." ON)
60if ( LLVM_USE_FOLDERS )
61 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
62endif()
Oscar Fuentes3145e922011-02-20 22:06:10 +000063
Oscar Fuentes052c23c2010-08-03 17:28:09 +000064include(VersionFromVCS)
Oscar Fuentes70640352010-12-20 09:47:13 +000065
66option(LLVM_APPEND_VC_REV
67 "Append the version control system revision id to LLVM version" OFF)
68
69if( LLVM_APPEND_VC_REV )
70 add_version_info_from_vcs(PACKAGE_VERSION)
71endif()
Oscar Fuentes052c23c2010-08-03 17:28:09 +000072
Dylan Noblesmith67c49702011-12-18 18:50:16 +000073set(PACKAGE_NAME LLVM)
Chris Lattnerff2d99d2009-01-28 17:49:03 +000074set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Dylan Noblesmith67c49702011-12-18 18:50:16 +000075set(PACKAGE_BUGREPORT "http://llvm.org/bugs/")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000076
NAKAMURA Takumif0a1ab82014-01-13 05:25:13 +000077set(BUG_REPORT_URL "${PACKAGE_BUGREPORT}" CACHE STRING
78 "Default URL where bug reports are to be submitted.")
79
Reid Klecknerc974f092013-08-29 22:09:43 +000080# Configure CPack.
Hans Wennborg09d108b2013-11-21 22:47:21 +000081set(CPACK_PACKAGE_INSTALL_DIRECTORY "LLVM")
Reid Klecknerc974f092013-08-29 22:09:43 +000082set(CPACK_PACKAGE_VENDOR "LLVM")
83set(CPACK_PACKAGE_VERSION_MAJOR ${LLVM_VERSION_MAJOR})
84set(CPACK_PACKAGE_VERSION_MINOR ${LLVM_VERSION_MINOR})
Tom Stellarde6ba81d2014-03-03 15:22:00 +000085set(CPACK_PACKAGE_VERSION_PATCH ${LLVM_VERSION_PATCH})
Hans Wennborg09d108b2013-11-21 22:47:21 +000086set(CPACK_PACKAGE_VERSION ${PACKAGE_VERSION})
Reid Klecknerc974f092013-08-29 22:09:43 +000087set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.TXT")
88if(WIN32 AND NOT UNIX)
Hans Wennborg09d108b2013-11-21 22:47:21 +000089 set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LLVM")
Reid Klecknerc974f092013-08-29 22:09:43 +000090 set(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_logo.bmp")
Hans Wennborga3c3b812014-03-27 20:48:37 +000091 set(CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
92 set(CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}\\\\cmake\\\\nsis_icon.ico")
Reid Klecknerc974f092013-08-29 22:09:43 +000093 set(CPACK_NSIS_MODIFY_PATH "ON")
94 set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL "ON")
95 set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
96 "ExecWait '$INSTDIR/tools/msbuild/install.bat'")
97 set(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS
98 "ExecWait '$INSTDIR/tools/msbuild/uninstall.bat'")
Hans Wennborg9148e172015-02-03 18:31:29 +000099 if( CMAKE_CL_64 )
100 set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64")
101 endif()
Reid Klecknerc974f092013-08-29 22:09:43 +0000102endif()
103include(CPack)
104
Daniel Dunbarad3946a2011-11-04 19:04:39 +0000105# Sanity check our source directory to make sure that we are not trying to
106# generate an in-tree build (unless on MSVC_IDE, where it is ok), and to make
107# sure that we don't have any stray generated files lying around in the tree
108# (which would end up getting picked up by header search, instead of the correct
109# versions).
Oscar Fuentesa5f83562008-11-14 03:43:18 +0000110if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
111 message(FATAL_ERROR "In-source builds are not allowed.
112CMake would overwrite the makefiles distributed with LLVM.
113Please create a directory and run cmake from there, passing the path
114to this source directory as the last argument.
115This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
116Please delete them.")
117endif()
Daniel Dunbarad3946a2011-11-04 19:04:39 +0000118if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
119 file(GLOB_RECURSE
120 tablegenned_files_on_include_dir
121 "${CMAKE_CURRENT_SOURCE_DIR}/include/llvm/*.gen")
122 file(GLOB_RECURSE
123 tablegenned_files_on_lib_dir
124 "${CMAKE_CURRENT_SOURCE_DIR}/lib/Target/*.inc")
125 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
126 message(FATAL_ERROR "Apparently there is a previous in-source build,
127probably as the result of running `configure' and `make' on
128${CMAKE_CURRENT_SOURCE_DIR}.
129This may cause problems. The suspicious files are:
130${tablegenned_files_on_lib_dir}
131${tablegenned_files_on_include_dir}
132Please clean the source directory.")
133 endif()
134endif()
Oscar Fuentesa5f83562008-11-14 03:43:18 +0000135
Oscar Fuentes61338132009-06-03 15:11:25 +0000136string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
137
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000138set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
139
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000140# They are used as destination of target generators.
141set(LLVM_RUNTIME_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin)
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000142set(LLVM_LIBRARY_OUTPUT_INTDIR ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib${LLVM_LIBDIR_SUFFIX})
NAKAMURA Takumi6c5fbbc2014-07-04 04:23:26 +0000143if(WIN32 OR CYGWIN)
144 # DLL platform -- put DLLs into bin.
145 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_RUNTIME_OUTPUT_INTDIR})
146else()
147 set(LLVM_SHLIB_OUTPUT_INTDIR ${LLVM_LIBRARY_OUTPUT_INTDIR})
148endif()
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000149
150# Each of them corresponds to llvm-config's.
NAKAMURA Takumice78b802014-01-19 12:52:10 +0000151set(LLVM_TOOLS_BINARY_DIR ${LLVM_RUNTIME_OUTPUT_INTDIR}) # --bindir
152set(LLVM_LIBRARY_DIR ${LLVM_LIBRARY_OUTPUT_INTDIR}) # --libdir
NAKAMURA Takumi0190e942014-01-19 12:47:26 +0000153set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR} ) # --src-root
154set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include ) # --includedir
155set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR} ) # --prefix
156
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000157set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000158set(LLVM_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/include)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000159
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000160set(LLVM_ALL_TARGETS
Tim Northover3b0846e2014-05-24 12:50:23 +0000161 AArch64
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000162 ARM
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000163 CppBackend
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000164 Hexagon
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000165 Mips
Richard Pennington9f3bd4a2009-07-09 20:27:09 +0000166 MSP430
Justin Holewinskiae556d32012-05-04 20:18:50 +0000167 NVPTX
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000168 PowerPC
Rafael Espindolaf6474d22013-05-22 00:35:47 +0000169 R600
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000170 Sparc
Ulrich Weigand92b20852013-05-06 16:23:07 +0000171 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000172 X86
173 XCore
174 )
175
Oscar Fuentes465f9362011-03-23 17:42:13 +0000176# List of targets with JIT support:
Tim Northover3b0846e2014-05-24 12:50:23 +0000177set(LLVM_TARGETS_WITH_JIT X86 PowerPC AArch64 ARM Mips SystemZ)
Oscar Fuentes465f9362011-03-23 17:42:13 +0000178
Tim Northover865f4bc2013-04-15 11:53:05 +0000179set(LLVM_TARGETS_TO_BUILD "all"
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000180 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000181
Victor Oliveira9d4b8f52012-08-09 01:13:59 +0000182set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ""
183 CACHE STRING "Semicolon-separated list of experimental targets to build.")
184
Dylan Noblesmithaf9be0b2012-02-01 14:49:39 +0000185option(BUILD_SHARED_LIBS
186 "Build all libraries as shared libraries instead of static" OFF)
187
Oscar Fuentesc8cb58e2011-01-11 12:31:54 +0000188option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
189if(LLVM_ENABLE_TIMESTAMPS)
190 set(ENABLE_TIMESTAMPS 1)
191endif()
192
Benjamin Kramer5651cbd2012-09-28 10:10:46 +0000193option(LLVM_ENABLE_BACKTRACES "Enable embedding backtraces on crash." ON)
194if(LLVM_ENABLE_BACKTRACES)
195 set(ENABLE_BACKTRACES 1)
196endif()
197
Daniel Dunbareb6c7082013-08-30 20:39:21 +0000198option(LLVM_ENABLE_CRASH_OVERRIDES "Enable crash overrides." ON)
199if(LLVM_ENABLE_CRASH_OVERRIDES)
200 set(ENABLE_CRASH_OVERRIDES 1)
201endif()
202
Oscar Fuentes64955952011-01-21 15:42:54 +0000203option(LLVM_ENABLE_FFI "Use libffi to call external functions from the interpreter" OFF)
204set(FFI_LIBRARY_DIR "" CACHE PATH "Additional directory, where CMake should search for libffi.so")
205set(FFI_INCLUDE_DIR "" CACHE PATH "Additional directory, where CMake should search for ffi.h or ffi/ffi.h")
206
Sebastian Pop82622dc2012-08-08 18:04:45 +0000207set(LLVM_TARGET_ARCH "host"
208 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
Oscar Fuentesb9a78132009-09-13 22:18:38 +0000209
Chandler Carruthf11f1e42013-08-12 09:49:17 +0000210option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
Chandler Carruthcad7e5e2013-08-07 08:47:36 +0000211
Oscar Fuentes366fbb72008-11-18 23:45:21 +0000212option(LLVM_ENABLE_THREADS "Use threads if available." ON)
213
Alexey Samsonov2fb337e2013-04-23 08:28:39 +0000214option(LLVM_ENABLE_ZLIB "Use zlib for compression/decompression if available." ON)
215
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000216if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
217 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
218endif()
219
Victor Oliveira18023e42012-08-15 22:35:36 +0000220set(LLVM_TARGETS_TO_BUILD
221 ${LLVM_TARGETS_TO_BUILD}
222 ${LLVM_EXPERIMENTAL_TARGETS_TO_BUILD})
Rafael Espindolacf1e6572013-05-22 02:45:28 +0000223list(REMOVE_DUPLICATES LLVM_TARGETS_TO_BUILD)
Victor Oliveira18023e42012-08-15 22:35:36 +0000224
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000225include(AddLLVMDefinitions)
226
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000227option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000228
Oscar Fuentes1276e322011-03-01 22:31:19 +0000229# MSVC has a gazillion warnings with this.
230if( MSVC )
231 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
NAKAMURA Takumi692d1982014-04-14 21:58:19 +0000232else()
Oscar Fuentes1276e322011-03-01 22:31:19 +0000233 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
234endif()
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000235
Richard Smith2b91a7f2014-09-26 22:40:15 +0000236option(LLVM_ENABLE_MODULES "Compile with C++ modules enabled." OFF)
Chandler Carruth25eacf72014-03-01 03:16:07 +0000237option(LLVM_ENABLE_CXX1Y "Compile with C++1y enabled." OFF)
Jean-Daniel Dupasedad1b42014-01-06 18:27:27 +0000238option(LLVM_ENABLE_LIBCXX "Use libc++ if available." OFF)
Oscar Fuentes1276e322011-03-01 22:31:19 +0000239option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
240option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000241
Duncan Sands80f122f2013-07-17 09:34:51 +0000242if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000243 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
244else()
245 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000246endif()
247
Chandler Carruth83885972014-01-13 22:21:34 +0000248option(LLVM_FORCE_USE_OLD_HOST_TOOLCHAIN
249 "Set to ON to force using an old, unsupported host toolchain." OFF)
250
Eli Bendersky5262ad22012-03-13 08:33:15 +0000251option(LLVM_USE_INTEL_JITEVENTS
252 "Use Intel JIT API to inform Intel(R) VTune(TM) Amplifier XE 2011 about JIT code"
253 OFF)
254
255if( LLVM_USE_INTEL_JITEVENTS )
256 # Verify we are on a supported platform
Andrew Kaylor5808c7d2012-09-28 17:35:20 +0000257 if( NOT CMAKE_SYSTEM_NAME MATCHES "Windows" AND NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Eli Bendersky5262ad22012-03-13 08:33:15 +0000258 message(FATAL_ERROR
259 "Intel JIT API support is available on Linux and Windows only.")
260 endif()
261endif( LLVM_USE_INTEL_JITEVENTS )
262
263option(LLVM_USE_OPROFILE
264 "Use opagent JIT interface to inform OProfile about JIT code" OFF)
265
Joel Jones54594f22012-12-13 15:25:07 +0000266# If enabled, verify we are on a platform that supports oprofile.
Eli Bendersky5262ad22012-03-13 08:33:15 +0000267if( LLVM_USE_OPROFILE )
268 if( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
Matt Arsenaultd31b63e2014-06-12 21:27:03 +0000269 message(FATAL_ERROR "OProfile support is available on Linux only.")
Eli Bendersky5262ad22012-03-13 08:33:15 +0000270 endif( NOT CMAKE_SYSTEM_NAME MATCHES "Linux" )
271endif( LLVM_USE_OPROFILE )
272
Alexey Samsonov75789a22013-03-26 07:49:46 +0000273set(LLVM_USE_SANITIZER "" CACHE STRING
274 "Define the sanitizer used to build binaries and tests.")
275
Eric Christopher39878062013-07-30 21:44:10 +0000276option(LLVM_USE_SPLIT_DWARF
277 "Use -gsplit-dwarf when compiling llvm." OFF)
278
Alp Toker6ae079e2014-06-06 06:39:00 +0000279option(WITH_POLLY "Build LLVM with Polly" ON)
280option(LINK_POLLY_INTO_TOOLS "Static link Polly into tools" OFF)
281
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000282# Define an option controlling whether we should build for 32-bit on 64-bit
283# platforms, where supported.
284if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
285 # TODO: support other platforms and toolchains.
286 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
287endif()
288
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000289# Define the default arguments to use with 'lit', and an option for the user to
290# override.
291set(LIT_ARGS_DEFAULT "-sv")
292if (MSVC OR XCODE)
293 set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
294endif()
295set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
296
NAKAMURA Takumiba330ae2011-12-11 03:07:53 +0000297# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
298if( WIN32 AND NOT CYGWIN )
Daniel Dunbar10fa2df2011-11-04 19:04:35 +0000299 set(LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools")
300endif()
301
Daniel Dunbar511e2962011-11-04 19:04:37 +0000302# Define options to control the inclusion and default build behavior for
Chandler Carruthea564942013-10-02 15:42:23 +0000303# components which may not strictly be necessary (tools, examples, and tests).
Daniel Dunbar511e2962011-11-04 19:04:37 +0000304#
305# This is primarily to support building smaller or faster project files.
306option(LLVM_INCLUDE_TOOLS "Generate build targets for the LLVM tools." ON)
307option(LLVM_BUILD_TOOLS
308 "Build the LLVM tools. If OFF, just generate build targets." ON)
309
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000310option(LLVM_INCLUDE_UTILS "Generate build targets for the LLVM utils." ON)
311
Alexey Samsonov693e1a52013-10-04 10:41:38 +0000312option(LLVM_BUILD_RUNTIME
313 "Build the LLVM runtime libraries." ON)
Daniel Dunbar511e2962011-11-04 19:04:37 +0000314option(LLVM_BUILD_EXAMPLES
315 "Build the LLVM example programs. If OFF, just generate build targets." OFF)
316option(LLVM_INCLUDE_EXAMPLES "Generate build targets for the LLVM examples" ON)
317
318option(LLVM_BUILD_TESTS
319 "Build LLVM unit tests. If OFF, just generate build targets." OFF)
320option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
321
Michael Gottesman4d35b902013-08-24 07:25:21 +0000322option (LLVM_BUILD_DOCS "Build the llvm documentation." OFF)
323option (LLVM_INCLUDE_DOCS "Generate build targets for llvm documentation." ON)
Reid Kleckner9f5eb632014-04-18 21:45:25 +0000324option (LLVM_ENABLE_DOXYGEN "Use doxygen to generate llvm API documentation." OFF)
325option (LLVM_ENABLE_SPHINX "Use Sphinx to generate llvm documentation." OFF)
Michael Gottesman4d35b902013-08-24 07:25:21 +0000326
Alexey Samsonovf431a832014-02-27 08:59:01 +0000327option (LLVM_BUILD_EXTERNAL_COMPILER_RT
328 "Build compiler-rt as an external project." OFF)
329
Chris Bienemanadffd012014-10-23 17:22:14 +0000330option(LLVM_BUILD_LLVM_DYLIB "Build libllvm dynamic library" OFF)
Chris Bieneman5d388e12014-12-09 18:49:55 +0000331option(LLVM_DISABLE_LLVM_DYLIB_ATEXIT "Disable llvm-shlib's atexit destructors." ON)
332if(LLVM_DISABLE_LLVM_DYLIB_ATEXIT)
333 set(DISABLE_LLVM_DYLIB_ATEXIT 1)
334endif()
Chris Bienemanadffd012014-10-23 17:22:14 +0000335
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000336# All options referred to from HandleLLVMOptions have to be specified
Oscar Fuentes1276e322011-03-01 22:31:19 +0000337# BEFORE this include, otherwise options will not be correctly set on
338# first cmake run
339include(config-ix)
Sebastian Popfaeca292012-08-20 19:56:52 +0000340
341# By default, we target the host, but this can be overridden at CMake
342# invocation time.
343set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}" CACHE STRING
344 "Default target for which LLVM will generate code." )
NAKAMURA Takumif9573f12012-12-10 07:14:29 +0000345set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}")
Sebastian Popfaeca292012-08-20 19:56:52 +0000346
Oscar Fuentes1276e322011-03-01 22:31:19 +0000347include(HandleLLVMOptions)
348
Reid Kleckner63784ba2013-06-24 13:21:16 +0000349# Verify that we can find a Python 2 interpreter. Python 3 is unsupported.
Chandler Carruthd86ab892014-12-29 19:36:05 +0000350# FIXME: We should support systems with only Python 3, but that requires work
351# on LLDB.
352set(Python_ADDITIONAL_VERSIONS 2.7)
Daniel Dunbar21079ca2011-11-04 23:04:05 +0000353include(FindPythonInterp)
354if( NOT PYTHONINTERP_FOUND )
355 message(FATAL_ERROR
356"Unable to find Python interpreter, required for builds and testing.
357
358Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
359endif()
360
Chandler Carruthd86ab892014-12-29 19:36:05 +0000361if( ${PYTHON_VERSION_STRING} VERSION_LESS 2.7 )
362 message(FATAL_ERROR "Python 2.7 or newer is required")
363endif()
364
Daniel Dunbar64371262011-11-05 06:30:03 +0000365######
366# LLVMBuild Integration
367#
368# We use llvm-build to generate all the data required by the CMake based
369# build system in one swoop:
370#
371# - We generate a file (a CMake fragment) in the object root which contains
372# all the definitions that are required by CMake.
373#
374# - We generate the library table used by llvm-config.
375#
376# - We generate the dependencies for the CMake fragment, so that we will
377# automatically reconfigure outselves.
378
379set(LLVMBUILDTOOL "${LLVM_MAIN_SRC_DIR}/utils/llvm-build/llvm-build")
380set(LLVMCONFIGLIBRARYDEPENDENCIESINC
Daniel Dunbarab0ad4e2011-12-01 20:18:09 +0000381 "${LLVM_BINARY_DIR}/tools/llvm-config/LibraryDependencies.inc")
Daniel Dunbar64371262011-11-05 06:30:03 +0000382set(LLVMBUILDCMAKEFRAG
383 "${LLVM_BINARY_DIR}/LLVMBuild.cmake")
Preston Gurde65f4e62012-05-07 19:38:40 +0000384
385# Create the list of optional components that are enabled
386if (LLVM_USE_INTEL_JITEVENTS)
387 set(LLVMOPTIONALCOMPONENTS IntelJITEvents)
388endif (LLVM_USE_INTEL_JITEVENTS)
389if (LLVM_USE_OPROFILE)
390 set(LLVMOPTIONALCOMPONENTS ${LLVMOPTIONALCOMPONENTS} OProfileJIT)
391endif (LLVM_USE_OPROFILE)
392
Daniel Dunbar64371262011-11-05 06:30:03 +0000393message(STATUS "Constructing LLVMBuild project information")
394execute_process(
395 COMMAND ${PYTHON_EXECUTABLE} ${LLVMBUILDTOOL}
Daniel Dunbar807c6e42011-11-10 01:16:48 +0000396 --native-target "${LLVM_NATIVE_ARCH}"
397 --enable-targets "${LLVM_TARGETS_TO_BUILD}"
Preston Gurde65f4e62012-05-07 19:38:40 +0000398 --enable-optional-components "${LLVMOPTIONALCOMPONENTS}"
Daniel Dunbar64371262011-11-05 06:30:03 +0000399 --write-library-table ${LLVMCONFIGLIBRARYDEPENDENCIESINC}
400 --write-cmake-fragment ${LLVMBUILDCMAKEFRAG}
Michael Gottesman21c69482013-08-15 04:16:12 +0000401 OUTPUT_VARIABLE LLVMBUILDOUTPUT
Daniel Dunbar64371262011-11-05 06:30:03 +0000402 ERROR_VARIABLE LLVMBUILDERRORS
403 OUTPUT_STRIP_TRAILING_WHITESPACE
404 ERROR_STRIP_TRAILING_WHITESPACE
405 RESULT_VARIABLE LLVMBUILDRESULT)
406
407# On Win32, CMake doesn't properly handle piping the default output/error
408# streams into the GUI console. So, we explicitly catch and report them.
409if( NOT "${LLVMBUILDOUTPUT}" STREQUAL "")
410 message(STATUS "llvm-build output: ${LLVMBUILDOUTPUT}")
411endif()
412if( NOT "${LLVMBUILDRESULT}" STREQUAL "0" )
413 message(FATAL_ERROR
414 "Unexpected failure executing llvm-build: ${LLVMBUILDERRORS}")
415endif()
416
417# Include the generated CMake fragment. This will define properties from the
418# LLVMBuild files in a format which is easy to consume from CMake, and will add
419# the dependencies so that CMake will reconfigure properly when the LLVMBuild
420# files change.
421include(${LLVMBUILDCMAKEFRAG})
422
423######
424
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000425# Configure all of the various header file fragments LLVM uses which depend on
426# configuration variables.
Andy Gibbsf5dede12013-06-26 07:57:53 +0000427set(LLVM_ENUM_TARGETS "")
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000428set(LLVM_ENUM_ASM_PRINTERS "")
429set(LLVM_ENUM_ASM_PARSERS "")
430set(LLVM_ENUM_DISASSEMBLERS "")
431foreach(t ${LLVM_TARGETS_TO_BUILD})
432 set( td ${LLVM_MAIN_SRC_DIR}/lib/Target/${t} )
Andy Gibbsf5dede12013-06-26 07:57:53 +0000433
434 list(FIND LLVM_ALL_TARGETS ${t} idx)
435 list(FIND LLVM_EXPERIMENTAL_TARGETS_TO_BUILD ${t} idy)
436 if( idx LESS 0 AND idy LESS 0 )
437 message(FATAL_ERROR "The target `${t}' does not exist.
438 It should be one of\n${LLVM_ALL_TARGETS}")
439 else()
440 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${t})\n")
441 endif()
442
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000443 file(GLOB asmp_file "${td}/*AsmPrinter.cpp")
444 if( asmp_file )
445 set(LLVM_ENUM_ASM_PRINTERS
446 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
447 endif()
448 if( EXISTS ${td}/AsmParser/CMakeLists.txt )
449 set(LLVM_ENUM_ASM_PARSERS
450 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
451 endif()
452 if( EXISTS ${td}/Disassembler/CMakeLists.txt )
453 set(LLVM_ENUM_DISASSEMBLERS
454 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
455 endif()
456endforeach(t)
457
458# Produce the target definition files, which provide a way for clients to easily
459# include various classes of targets.
460configure_file(
461 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000462 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmPrinters.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000463 )
464configure_file(
465 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000466 ${LLVM_INCLUDE_DIR}/llvm/Config/AsmParsers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000467 )
468configure_file(
469 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000470 ${LLVM_INCLUDE_DIR}/llvm/Config/Disassemblers.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000471 )
472configure_file(
473 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000474 ${LLVM_INCLUDE_DIR}/llvm/Config/Targets.def
Daniel Dunbar4a2eab02011-11-04 19:04:42 +0000475 )
476
477# Configure the three LLVM configuration header files.
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000478configure_file(
479 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000480 ${LLVM_INCLUDE_DIR}/llvm/Config/config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000481configure_file(
482 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/llvm-config.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000483 ${LLVM_INCLUDE_DIR}/llvm/Config/llvm-config.h)
Oscar Fuentesf4202ba2011-02-03 20:57:36 +0000484configure_file(
485 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Support/DataTypes.h.cmake
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000486 ${LLVM_INCLUDE_DIR}/llvm/Support/DataTypes.h)
Oscar Fuentesedfc1842011-01-09 14:34:39 +0000487
NAKAMURA Takumi0ec65f12014-01-19 12:47:22 +0000488# They are not referenced. See set_output_directory().
489set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/bin )
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000490set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
491set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib${LLVM_LIBDIR_SUFFIX} )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000492
Rafael Espindola478873c2014-02-22 13:29:31 +0000493set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
494if (APPLE)
Rafael Espindolac80968e2014-02-28 13:48:03 +0000495 set(CMAKE_INSTALL_NAME_DIR "@rpath")
Rafael Espindola478873c2014-02-22 13:29:31 +0000496 set(CMAKE_INSTALL_RPATH "@executable_path/../lib")
497else(UNIX)
Bernard Ogden301bafe2014-02-24 22:23:43 +0000498 if(NOT DEFINED CMAKE_INSTALL_RPATH)
Chandler Carrutha78e24e2014-12-29 11:16:19 +0000499 set(CMAKE_INSTALL_RPATH "\$ORIGIN/../lib${LLVM_LIBDIR_SUFFIX}")
Ed Maste644aef82014-03-09 18:48:45 +0000500 if (${CMAKE_SYSTEM_NAME} MATCHES FreeBSD)
501 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-z,origin")
Viktor Kutuzov5e0db8b2014-08-01 19:23:15 +0000502 set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,origin")
Ed Maste644aef82014-03-09 18:48:45 +0000503 endif()
Bernard Ogden301bafe2014-02-24 22:23:43 +0000504 endif(NOT DEFINED CMAKE_INSTALL_RPATH)
Rafael Espindola478873c2014-02-22 13:29:31 +0000505endif()
Rafael Espindola6ad1b3f2013-12-19 23:13:58 +0000506
Rafael Espindolaf9dcf902014-11-07 15:33:56 +0000507# Work around a broken bfd ld behavior. When linking a binary with a
508# foo.so library, it will try to find any library that foo.so uses and
509# check its symbols. This is wasteful (the check was done when foo.so
510# was created) and can fail since it is not the dynamic linker and
511# doesn't know how to handle search paths correctly.
512if (UNIX AND NOT APPLE)
513 set(CMAKE_EXE_LINKER_FLAGS
514 "${CMAKE_EXE_LINKER_FLAGS} -Wl,-allow-shlib-undefined")
515endif()
516
Oscar Fuentes210b06a2011-02-14 20:13:58 +0000517set(CMAKE_INCLUDE_CURRENT_DIR ON)
518
NAKAMURA Takumi03932fb2013-12-16 15:05:39 +0000519include_directories( ${LLVM_INCLUDE_DIR} ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000520
Chris Bieneman50077412014-09-03 23:21:18 +0000521# when crosscompiling import the executable targets from a file
522if(CMAKE_CROSSCOMPILING)
523 include(CrossCompile)
524endif(CMAKE_CROSSCOMPILING)
525
David Chisnall79450132013-02-14 15:40:44 +0000526if( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
527 # On FreeBSD, /usr/local/* is not used by default. In order to build LLVM
528 # with libxml2, iconv.h, etc., we must add /usr/local paths.
529 include_directories("/usr/local/include")
530 link_directories("/usr/local/lib")
531endif( ${CMAKE_SYSTEM_NAME} MATCHES FreeBSD )
532
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000533if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
Oscar Fuentes2d48f652011-07-17 17:35:15 +0000534 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include llvm/Support/Solaris.h")
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000535endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
536
Rafael Espindola76f92272013-04-04 01:01:32 +0000537# Make sure we don't get -rdynamic in every binary. For those that need it,
538# use set_target_properties(target PROPERTIES ENABLE_EXPORTS 1)
539set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
540
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000541include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000542include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000543
Michael J. Spencer7c3a5ee2010-09-11 02:13:39 +0000544if( MINGW )
Oscar Fuentes9bf25952011-01-07 20:31:03 +0000545 # People report that -O3 is unreliable on MinGW. The traditional
546 # build also uses -O2 for that reason:
547 llvm_replace_compiler_option(CMAKE_CXX_FLAGS_RELEASE "-O3" "-O2")
548endif()
549
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000550# Put this before tblgen. Else we have a circular dependence.
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000551add_subdirectory(lib/Support)
Peter Collingbourne84c287e2011-10-01 16:41:13 +0000552add_subdirectory(lib/TableGen)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000553
Oscar Fuentese352ca02008-11-10 01:32:14 +0000554add_subdirectory(utils/TableGen)
555
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000556add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000557
Oscar Fuentes5ed96262011-02-18 22:06:14 +0000558add_subdirectory(lib)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000559
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000560if( LLVM_INCLUDE_UTILS )
561 add_subdirectory(utils/FileCheck)
Alexey Samsonove825c852014-05-07 16:54:00 +0000562 add_subdirectory(utils/PerfectShuffle)
Pete Cooper4da0a0c2014-04-02 22:49:58 +0000563 add_subdirectory(utils/count)
564 add_subdirectory(utils/not)
565 add_subdirectory(utils/llvm-lit)
566 add_subdirectory(utils/yaml-bench)
567else()
568 if ( LLVM_INCLUDE_TESTS )
569 message(FATAL_ERROR "Including tests when not building utils will not work.
570 Either set LLVM_INCLUDE_UTILS to On, or set LLVM_INCLDE_TESTS to Off.")
571 endif()
572endif()
Douglas Gregor289dfc52009-07-20 18:30:25 +0000573
NAKAMURA Takumi5a0234f2014-01-31 17:32:46 +0000574if(LLVM_INCLUDE_TESTS)
575 add_subdirectory(utils/unittest)
576endif()
577
Peter Zotovb20073c2014-12-01 19:50:23 +0000578foreach( binding ${LLVM_BINDINGS_LIST} )
579 if( EXISTS "${LLVM_MAIN_SRC_DIR}/bindings/${binding}/CMakeLists.txt" )
580 add_subdirectory(bindings/${binding})
581 endif()
582endforeach()
583
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000584add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000585
Sebastian Popf7d02d42014-03-11 22:42:07 +0000586if(WITH_POLLY)
587 if(NOT EXISTS ${LLVM_MAIN_SRC_DIR}/tools/polly/CMakeLists.txt)
588 set(WITH_POLLY OFF)
589 endif()
590endif(WITH_POLLY)
591
Oscar Fuentesbf030842010-09-25 20:43:06 +0000592if( LLVM_INCLUDE_TOOLS )
593 add_subdirectory(tools)
594endif()
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000595
Oscar Fuentesbf030842010-09-25 20:43:06 +0000596if( LLVM_INCLUDE_EXAMPLES )
597 add_subdirectory(examples)
598endif()
Oscar Fuentes64c99622008-10-22 02:56:07 +0000599
Oscar Fuentesbf030842010-09-25 20:43:06 +0000600if( LLVM_INCLUDE_TESTS )
601 add_subdirectory(test)
Oscar Fuentesbf030842010-09-25 20:43:06 +0000602 add_subdirectory(unittests)
NAKAMURA Takumi4bb599c2010-10-26 05:08:27 +0000603 if (MSVC)
Joel Jones54594f22012-12-13 15:25:07 +0000604 # This utility is used to prevent crashing tests from calling Dr. Watson on
Michael J. Spencer279362d2010-10-11 19:55:38 +0000605 # Windows.
606 add_subdirectory(utils/KillTheDoctor)
607 endif()
Chandler Carruth69ce6652012-06-30 10:14:14 +0000608
609 # Add a global check rule now that all subdirectories have been traversed
610 # and we know the total set of lit testsuites.
611 get_property(LLVM_LIT_TESTSUITES GLOBAL PROPERTY LLVM_LIT_TESTSUITES)
612 get_property(LLVM_LIT_PARAMS GLOBAL PROPERTY LLVM_LIT_PARAMS)
613 get_property(LLVM_LIT_DEPENDS GLOBAL PROPERTY LLVM_LIT_DEPENDS)
614 get_property(LLVM_LIT_EXTRA_ARGS GLOBAL PROPERTY LLVM_LIT_EXTRA_ARGS)
615 add_lit_target(check-all
616 "Running all regression tests"
617 ${LLVM_LIT_TESTSUITES}
618 PARAMS ${LLVM_LIT_PARAMS}
619 DEPENDS ${LLVM_LIT_DEPENDS}
620 ARGS ${LLVM_LIT_EXTRA_ARGS}
621 )
Oscar Fuentesbf030842010-09-25 20:43:06 +0000622endif()
Michael J. Spencer10d274d2010-09-24 09:01:13 +0000623
Michael Gottesman4d35b902013-08-24 07:25:21 +0000624if (LLVM_INCLUDE_DOCS)
625 add_subdirectory(docs)
626endif()
627
Oscar Fuentesa389c582010-08-09 03:26:43 +0000628add_subdirectory(cmake/modules)
629
Hans Wennborg16546272013-08-24 00:20:36 +0000630if (NOT LLVM_INSTALL_TOOLCHAIN_ONLY)
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000631 install(DIRECTORY include/llvm include/llvm-c
Hans Wennborg16546272013-08-24 00:20:36 +0000632 DESTINATION include
633 FILES_MATCHING
634 PATTERN "*.def"
635 PATTERN "*.h"
636 PATTERN "*.td"
637 PATTERN "*.inc"
638 PATTERN "LICENSE.TXT"
639 PATTERN ".svn" EXCLUDE
640 )
Oscar Fuentes64c99622008-10-22 02:56:07 +0000641
NAKAMURA Takumic70006e2014-02-10 10:50:55 +0000642 install(DIRECTORY ${LLVM_INCLUDE_DIR}/llvm
Hans Wennborg16546272013-08-24 00:20:36 +0000643 DESTINATION include
644 FILES_MATCHING
645 PATTERN "*.def"
646 PATTERN "*.h"
647 PATTERN "*.gen"
648 PATTERN "*.inc"
649 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
650 PATTERN "CMakeFiles" EXCLUDE
Alp Toker65faa292014-06-12 11:25:18 +0000651 PATTERN "config.h" EXCLUDE
Hans Wennborg16546272013-08-24 00:20:36 +0000652 PATTERN ".svn" EXCLUDE
653 )
654endif()