blob: 794e8e951c6ab8e64224375febfc7f420a211f69 [file] [log] [blame]
Oscar Fuentes4d925f12009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Cédric Venet37275c62008-10-30 21:22:00 +00003project(LLVM)
Oscar Fuentes00905d52008-09-22 01:08:49 +00004cmake_minimum_required(VERSION 2.6.1)
5
6set(PACKAGE_NAME llvm)
Douglas Gregor7c502432009-08-22 06:30:31 +00007set(PACKAGE_VERSION 2.7svn)
Chris Lattner08e88a32009-01-28 17:49:03 +00008set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Oscar Fuentes928b29e2008-10-25 03:49:35 +00009set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
Oscar Fuentes00905d52008-09-22 01:08:49 +000010
Oscar Fuentes3bece9d2008-11-14 03:43:18 +000011if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
12 message(FATAL_ERROR "In-source builds are not allowed.
13CMake would overwrite the makefiles distributed with LLVM.
14Please create a directory and run cmake from there, passing the path
15to this source directory as the last argument.
16This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
17Please delete them.")
18endif()
19
Oscar Fuentes538764e2009-06-03 15:11:25 +000020string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
21
Oscar Fuentes00905d52008-09-22 01:08:49 +000022set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes3ae2f202008-10-29 02:33:15 +000023set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentes00905d52008-09-22 01:08:49 +000024set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
25set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
26set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Oscar Fuentes1638ede2009-06-12 02:49:53 +000027set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentes00905d52008-09-22 01:08:49 +000028
Oscar Fuentes44ddba72009-07-13 21:58:44 +000029if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
30 file(GLOB_RECURSE
31 tablegenned_files_on_include_dir
32 "${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen")
33 file(GLOB_RECURSE
34 tablegenned_files_on_lib_dir
35 "${LLVM_MAIN_SRC_DIR}/lib/Target/*.inc")
36 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
37 message(FATAL_ERROR "Apparently there is a previous in-source build,
38probably as the result of running `configure' and `make' on
39${LLVM_MAIN_SRC_DIR}.
40This may cause problems. The suspicious files are:
41${tablegenned_files_on_lib_dir}
42${tablegenned_files_on_include_dir}
43Please clean the source directory.")
44 endif()
45endif()
46
Oscar Fuentesbc90c272008-11-10 01:47:07 +000047set(LLVM_ALL_TARGETS
48 Alpha
49 ARM
Jakob Stoklund Olesenb62e9aa2009-08-02 17:32:37 +000050 Blackfin
Oscar Fuentesbc90c272008-11-10 01:47:07 +000051 CBackend
52 CellSPU
53 CppBackend
Oscar Fuentesbc90c272008-11-10 01:47:07 +000054 Mips
55 MSIL
Richard Pennington475cb1f2009-07-09 20:27:09 +000056 MSP430
Oscar Fuentesbc90c272008-11-10 01:47:07 +000057 PIC16
58 PowerPC
59 Sparc
Daniel Dunbar3f17ea92009-07-20 00:24:17 +000060 SystemZ
Oscar Fuentesbc90c272008-11-10 01:47:07 +000061 X86
62 XCore
63 )
64
Oscar Fuentesda2a8a12008-09-26 04:40:32 +000065if( MSVC )
66 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentesbc90c272008-11-10 01:47:07 +000067 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesda2a8a12008-09-26 04:40:32 +000068else( MSVC )
Oscar Fuentesbc90c272008-11-10 01:47:07 +000069 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
70 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentesda2a8a12008-09-26 04:40:32 +000071endif( MSVC )
Oscar Fuentes00905d52008-09-22 01:08:49 +000072
Oscar Fuentes453222b2009-09-13 22:18:38 +000073set(LLVM_TARGET_ARCH "host"
74 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
75
Oscar Fuentesaa3b3152008-11-18 23:45:21 +000076option(LLVM_ENABLE_THREADS "Use threads if available." ON)
77
Oscar Fuentes538764e2009-06-03 15:11:25 +000078if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes91d635d2009-06-04 09:26:16 +000079 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes538764e2009-06-03 15:11:25 +000080else()
Oscar Fuentes91d635d2009-06-04 09:26:16 +000081 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes538764e2009-06-03 15:11:25 +000082endif()
83
Oscar Fuentes91d635d2009-06-04 09:26:16 +000084if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentesaa49d6c2009-07-05 18:43:52 +000085 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentesf7ccc7f2009-07-05 23:58:20 +000086 if( NOT MSVC )
Oscar Fuentesaa49d6c2009-07-05 18:43:52 +000087 add_definitions( -D_DEBUG )
88 endif()
Oscar Fuentes91d635d2009-06-04 09:26:16 +000089 # On Release builds cmake automatically defines NDEBUG, so we
90 # explicitly undefine it:
91 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
92 add_definitions( -UNDEBUG )
93 endif()
94else()
95 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
96 add_definitions( -DNDEBUG )
97 endif()
Oscar Fuentes538764e2009-06-03 15:11:25 +000098endif()
99
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000100if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
101 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
102endif()
103
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000104set(LLVM_ENUM_TARGETS "")
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000105foreach(c ${LLVM_TARGETS_TO_BUILD})
106 list(FIND LLVM_ALL_TARGETS ${c} idx)
107 if( idx LESS 0 )
Gabor Greif2fd98ab2009-08-12 08:37:37 +0000108 message(FATAL_ERROR "The target `${c}' does not exist.
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000109 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000110 else()
111 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000112 endif()
113endforeach(c)
114
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000115# Produce llvm/Config/Targets.def
116configure_file(
117 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
118 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
119 )
120
Oscar Fuentes00905d52008-09-22 01:08:49 +0000121set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
122
123# Add path for custom modules
124set(CMAKE_MODULE_PATH
125 ${CMAKE_MODULE_PATH}
126 "${LLVM_MAIN_SRC_DIR}/cmake"
127 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
128 )
129
Oscar Fuentesa7374582009-04-04 22:41:07 +0000130include(AddLLVMDefinitions)
131
Oscar Fuentes00905d52008-09-22 01:08:49 +0000132if(WIN32)
Oscar Fuenteseaf1eeb2008-10-30 17:15:54 +0000133 if(CYGWIN)
134 set(LLVM_ON_WIN32 0)
135 set(LLVM_ON_UNIX 1)
136 else(CYGWIN)
137 set(LLVM_ON_WIN32 1)
138 set(LLVM_ON_UNIX 0)
139 endif(CYGWIN)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000140 set(LTDL_SHLIB_EXT ".dll")
141 set(EXEEXT ".exe")
142 # Maximum path length is 160 for non-unicode paths
143 set(MAXPATHLEN 160)
144else(WIN32)
145 if(UNIX)
146 set(LLVM_ON_WIN32 0)
147 set(LLVM_ON_UNIX 1)
Daniel Dunbarb7784532009-09-22 06:09:37 +0000148 if(APPLE)
149 set(LTDL_SHLIB_EXT ".dylib")
150 else(APPLE)
151 set(LTDL_SHLIB_EXT ".so")
152 endif(APPLE)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000153 set(EXEEXT "")
154 # FIXME: Maximum path length is currently set to 'safe' fixed value
155 set(MAXPATHLEN 2024)
156 else(UNIX)
157 MESSAGE(SEND_ERROR "Unable to determine platform")
158 endif(UNIX)
159endif(WIN32)
160
Oscar Fuentesab469632008-10-25 03:29:36 +0000161include(config-ix)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000162
Oscar Fuentesca462fb2009-08-18 15:29:35 +0000163option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000164
Douglas Gregor5d8931b2009-06-05 23:46:34 +0000165set(ENABLE_PIC 0)
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000166if( LLVM_ENABLE_PIC )
Daniel Dunbar322873d2009-11-08 00:34:22 +0000167 if( XCODE )
168 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
169 # know how to disable this, so just force ENABLE_PIC off for now.
170 message(STATUS "Warning: -fPIC not supported with Xcode.")
171 else( XCODE )
172 if( SUPPORTS_FPIC_FLAG )
173 message(STATUS "Building with -fPIC")
174 add_llvm_definitions(-fPIC)
175 set(ENABLE_PIC 1)
176 else( SUPPORTS_FPIC_FLAG )
177 message(STATUS "Warning: -fPIC not supported.")
178 endif()
179 endif()
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000180endif()
181
Oscar Fuentes00905d52008-09-22 01:08:49 +0000182set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
183set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
184set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
185
186# set(CMAKE_VERBOSE_MAKEFILE true)
187
Oscar Fuentesa7374582009-04-04 22:41:07 +0000188add_llvm_definitions( -D__STDC_LIMIT_MACROS )
189add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes00905d52008-09-22 01:08:49 +0000190
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000191if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
192 # TODO: support other platforms and toolchains.
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000193 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
194 if( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000195 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000196 add_llvm_definitions( -m32 )
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000197 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
198 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000199 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000200endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
201
Oscar Fuentes00905d52008-09-22 01:08:49 +0000202if( MSVC )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000203 # List of valid CRTs for MSVC
204 set(MSVC_CRT
205 MD
206 MDd)
207
208 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000209 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
210 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
211 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
212 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
213 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000214
Daniel Dunbar1b6445a2009-07-19 01:35:10 +0000215 # Suppress 'new behavior: elements of array 'array' will be default initialized'
216 add_llvm_definitions( -wd4351 )
217
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000218 if (NOT ${LLVM_USE_CRT} STREQUAL "")
219 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
220 if (idx LESS 0)
221 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
222 endif (idx LESS 0)
223 add_llvm_definitions("/${LLVM_USE_CRT}")
224 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
225 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
Oscar Fuentes00905d52008-09-22 01:08:49 +0000226endif( MSVC )
227
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000228include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes00905d52008-09-22 01:08:49 +0000229
Edward O'Callaghan84354c72009-10-12 04:00:11 +0000230if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
231 SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/System/Solaris.h")
232endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
233
Oscar Fuentes00905d52008-09-22 01:08:49 +0000234include(AddLLVM)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000235include(TableGen)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000236
237add_subdirectory(lib/Support)
238add_subdirectory(lib/System)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000239
240# Everything else depends on Support and System:
241set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
242
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000243set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentesc9a32592008-11-10 02:35:55 +0000244 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes232f1942009-06-11 04:16:10 +0000245# Effective tblgen executable to be used:
246set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000247
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000248add_subdirectory(utils/TableGen)
249
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000250if( CMAKE_CROSSCOMPILING )
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000251 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000252 include( CrossCompileLLVM )
253endif( CMAKE_CROSSCOMPILING )
254
Oscar Fuentes78939712008-11-15 00:24:38 +0000255add_subdirectory(include/llvm)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000256
Oscar Fuentes00905d52008-09-22 01:08:49 +0000257add_subdirectory(lib/VMCore)
258add_subdirectory(lib/CodeGen)
259add_subdirectory(lib/CodeGen/SelectionDAG)
260add_subdirectory(lib/CodeGen/AsmPrinter)
261add_subdirectory(lib/Bitcode/Reader)
262add_subdirectory(lib/Bitcode/Writer)
263add_subdirectory(lib/Transforms/Utils)
264add_subdirectory(lib/Transforms/Instrumentation)
265add_subdirectory(lib/Transforms/Scalar)
266add_subdirectory(lib/Transforms/IPO)
267add_subdirectory(lib/Transforms/Hello)
268add_subdirectory(lib/Linker)
269add_subdirectory(lib/Analysis)
270add_subdirectory(lib/Analysis/IPA)
Daniel Dunbar6bedec12009-06-23 22:01:43 +0000271add_subdirectory(lib/MC)
Daniel Dunbara4acff72009-09-22 07:38:44 +0000272add_subdirectory(test)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000273
Douglas Gregorda30a362009-07-20 18:30:25 +0000274add_subdirectory(utils/FileCheck)
Daniel Dunbara8b80712009-09-24 06:23:57 +0000275add_subdirectory(utils/count)
276add_subdirectory(utils/not)
Douglas Gregorda30a362009-07-20 18:30:25 +0000277
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000278set(LLVM_ENUM_ASM_PRINTERS "")
279set(LLVM_ENUM_ASM_PARSERS "")
280foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000281 message(STATUS "Targeting ${t}")
282 add_subdirectory(lib/Target/${t})
Daniel Dunbar26a8dfc2009-07-15 07:04:27 +0000283 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentes9cd56a02008-11-14 22:21:02 +0000284 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000285 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000286 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000287 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
288 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000289 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000290 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000291 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000292 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
293 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes01833482009-08-16 05:16:43 +0000294 set(CURRENT_LLVM_TARGET)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000295endforeach(t)
296
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000297# Produce llvm/Config/AsmPrinters.def
298configure_file(
299 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
300 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
301 )
302
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000303# Produce llvm/Config/AsmParsers.def
304configure_file(
305 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
306 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
307 )
308
Oscar Fuentes00905d52008-09-22 01:08:49 +0000309add_subdirectory(lib/ExecutionEngine)
310add_subdirectory(lib/ExecutionEngine/Interpreter)
311add_subdirectory(lib/ExecutionEngine/JIT)
312add_subdirectory(lib/Target)
313add_subdirectory(lib/AsmParser)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000314add_subdirectory(lib/Archive)
315
Oscar Fuentes7b6742b2009-03-06 01:16:52 +0000316add_subdirectory(projects)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000317
Oscar Fuentes3cbe67d2009-08-16 20:56:30 +0000318option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
319if(LLVM_BUILD_TOOLS)
320 add_subdirectory(tools)
321endif()
322
323option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." ON)
324if(LLVM_BUILD_EXAMPLES)
Douglas Gregor374cca72009-06-16 22:25:45 +0000325 add_subdirectory(examples)
326endif ()
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000327
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000328install(DIRECTORY include/
329 DESTINATION include
330 FILES_MATCHING
Oscar Fuentesbf1bacb2009-10-30 11:42:08 +0000331 PATTERN "*.def"
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000332 PATTERN "*.h"
333 PATTERN "*.td"
Oscar Fuentes408a5e52009-10-27 20:04:22 +0000334 PATTERN "*.inc"
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000335 PATTERN ".svn" EXCLUDE
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000336 )
337
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000338install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
339 DESTINATION include
340 FILES_MATCHING
341 PATTERN "*.def"
342 PATTERN "*.h"
343 PATTERN "*.gen"
Oscar Fuentes408a5e52009-10-27 20:04:22 +0000344 PATTERN "*.inc"
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000345 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
346 PATTERN "CMakeFiles" EXCLUDE
347 PATTERN ".svn" EXCLUDE
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000348 )
349
350# TODO: make and install documentation.