blob: 3ad466901ac028f1c3ef7ecba0c6deb5e107a643 [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 Fuentesa8d851e2009-11-12 06:48:09 +000073set(C_INCLUDE_DIRS "" CACHE STRING
74 "Colon separated list of directories clang will search for headers.")
75
Oscar Fuentes453222b2009-09-13 22:18:38 +000076set(LLVM_TARGET_ARCH "host"
77 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
78
Oscar Fuentesaa3b3152008-11-18 23:45:21 +000079option(LLVM_ENABLE_THREADS "Use threads if available." ON)
80
Oscar Fuentes538764e2009-06-03 15:11:25 +000081if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes91d635d2009-06-04 09:26:16 +000082 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes538764e2009-06-03 15:11:25 +000083else()
Oscar Fuentes91d635d2009-06-04 09:26:16 +000084 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes538764e2009-06-03 15:11:25 +000085endif()
86
Oscar Fuentes91d635d2009-06-04 09:26:16 +000087if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentesaa49d6c2009-07-05 18:43:52 +000088 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentesf7ccc7f2009-07-05 23:58:20 +000089 if( NOT MSVC )
Oscar Fuentesaa49d6c2009-07-05 18:43:52 +000090 add_definitions( -D_DEBUG )
91 endif()
Oscar Fuentes91d635d2009-06-04 09:26:16 +000092 # On Release builds cmake automatically defines NDEBUG, so we
93 # explicitly undefine it:
94 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
95 add_definitions( -UNDEBUG )
96 endif()
97else()
98 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
99 add_definitions( -DNDEBUG )
100 endif()
Oscar Fuentes538764e2009-06-03 15:11:25 +0000101endif()
102
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000103if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
104 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
105endif()
106
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000107set(LLVM_ENUM_TARGETS "")
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000108foreach(c ${LLVM_TARGETS_TO_BUILD})
109 list(FIND LLVM_ALL_TARGETS ${c} idx)
110 if( idx LESS 0 )
Gabor Greif2fd98ab2009-08-12 08:37:37 +0000111 message(FATAL_ERROR "The target `${c}' does not exist.
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000112 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000113 else()
114 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentesbc90c272008-11-10 01:47:07 +0000115 endif()
116endforeach(c)
117
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000118# Produce llvm/Config/Targets.def
119configure_file(
120 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
121 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
122 )
123
Oscar Fuentes00905d52008-09-22 01:08:49 +0000124set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
125
126# Add path for custom modules
127set(CMAKE_MODULE_PATH
128 ${CMAKE_MODULE_PATH}
129 "${LLVM_MAIN_SRC_DIR}/cmake"
130 "${LLVM_MAIN_SRC_DIR}/cmake/modules"
131 )
132
Oscar Fuentesa7374582009-04-04 22:41:07 +0000133include(AddLLVMDefinitions)
134
Oscar Fuentes00905d52008-09-22 01:08:49 +0000135if(WIN32)
Oscar Fuenteseaf1eeb2008-10-30 17:15:54 +0000136 if(CYGWIN)
137 set(LLVM_ON_WIN32 0)
138 set(LLVM_ON_UNIX 1)
139 else(CYGWIN)
140 set(LLVM_ON_WIN32 1)
141 set(LLVM_ON_UNIX 0)
142 endif(CYGWIN)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000143 set(LTDL_SHLIB_EXT ".dll")
144 set(EXEEXT ".exe")
145 # Maximum path length is 160 for non-unicode paths
146 set(MAXPATHLEN 160)
147else(WIN32)
148 if(UNIX)
149 set(LLVM_ON_WIN32 0)
150 set(LLVM_ON_UNIX 1)
Daniel Dunbarb7784532009-09-22 06:09:37 +0000151 if(APPLE)
152 set(LTDL_SHLIB_EXT ".dylib")
153 else(APPLE)
154 set(LTDL_SHLIB_EXT ".so")
155 endif(APPLE)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000156 set(EXEEXT "")
157 # FIXME: Maximum path length is currently set to 'safe' fixed value
158 set(MAXPATHLEN 2024)
159 else(UNIX)
160 MESSAGE(SEND_ERROR "Unable to determine platform")
161 endif(UNIX)
162endif(WIN32)
163
Oscar Fuentesab469632008-10-25 03:29:36 +0000164include(config-ix)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000165
Oscar Fuentesca462fb2009-08-18 15:29:35 +0000166option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000167
Douglas Gregor5d8931b2009-06-05 23:46:34 +0000168set(ENABLE_PIC 0)
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000169if( LLVM_ENABLE_PIC )
Daniel Dunbar322873d2009-11-08 00:34:22 +0000170 if( XCODE )
171 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
172 # know how to disable this, so just force ENABLE_PIC off for now.
173 message(STATUS "Warning: -fPIC not supported with Xcode.")
174 else( XCODE )
175 if( SUPPORTS_FPIC_FLAG )
176 message(STATUS "Building with -fPIC")
177 add_llvm_definitions(-fPIC)
178 set(ENABLE_PIC 1)
179 else( SUPPORTS_FPIC_FLAG )
180 message(STATUS "Warning: -fPIC not supported.")
181 endif()
182 endif()
Oscar Fuentesa6794da2008-11-20 19:13:51 +0000183endif()
184
Oscar Fuentes00905d52008-09-22 01:08:49 +0000185set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
186set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
187set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
188
189# set(CMAKE_VERBOSE_MAKEFILE true)
190
Oscar Fuentesa7374582009-04-04 22:41:07 +0000191add_llvm_definitions( -D__STDC_LIMIT_MACROS )
192add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes00905d52008-09-22 01:08:49 +0000193
Tobias Grosser825f4e12009-12-01 08:43:33 +0000194option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
Oscar Fuentes3b581b32009-12-01 02:21:51 +0000195option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
196option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
197
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000198if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
199 # TODO: support other platforms and toolchains.
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000200 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
201 if( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000202 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000203 add_llvm_definitions( -m32 )
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000204 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
205 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000206 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000207endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
208
Oscar Fuentes00905d52008-09-22 01:08:49 +0000209if( MSVC )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000210 # List of valid CRTs for MSVC
211 set(MSVC_CRT
212 MD
213 MDd)
214
215 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000216 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
217 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
218 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
219 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
220 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000221
Daniel Dunbar1b6445a2009-07-19 01:35:10 +0000222 # Suppress 'new behavior: elements of array 'array' will be default initialized'
223 add_llvm_definitions( -wd4351 )
224
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000225 if (NOT ${LLVM_USE_CRT} STREQUAL "")
226 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
227 if (idx LESS 0)
228 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
229 endif (idx LESS 0)
230 add_llvm_definitions("/${LLVM_USE_CRT}")
231 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
232 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
Oscar Fuentes3b581b32009-12-01 02:21:51 +0000233
234 # Enable warnings
235 if (LLVM_ENABLE_WARNINGS)
236 add_llvm_definitions( /W4 /Wall )
237 if (LLVM_ENABLE_PEDANTIC)
238 # No MSVC equivalent available
239 endif (LLVM_ENABLE_PEDANTIC)
240 endif (LLVM_ENABLE_WARNINGS)
241 if (LLVM_ENABLE_WERROR)
242 add_llvm_definitions( /WX )
243 endif (LLVM_ENABLE_WERROR)
Oscar Fuentes63c90f62009-11-30 23:50:14 +0000244elseif( CMAKE_COMPILER_IS_GNUCXX )
Oscar Fuentes3b581b32009-12-01 02:21:51 +0000245 if (LLVM_ENABLE_WARNINGS)
246 add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
247 if (LLVM_ENABLE_PEDANTIC)
248 add_llvm_definitions( -pedantic -Wno-long-long )
249 endif (LLVM_ENABLE_PEDANTIC)
250 endif (LLVM_ENABLE_WARNINGS)
251 if (LLVM_ENABLE_WERROR)
252 add_llvm_definitions( -Werror )
253 endif (LLVM_ENABLE_WERROR)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000254endif( MSVC )
255
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000256include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes00905d52008-09-22 01:08:49 +0000257
Edward O'Callaghan84354c72009-10-12 04:00:11 +0000258if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
259 SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/System/Solaris.h")
260endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
261
Oscar Fuentes00905d52008-09-22 01:08:49 +0000262include(AddLLVM)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000263include(TableGen)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000264
265add_subdirectory(lib/Support)
266add_subdirectory(lib/System)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000267
268# Everything else depends on Support and System:
269set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
270
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000271set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentesc9a32592008-11-10 02:35:55 +0000272 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes232f1942009-06-11 04:16:10 +0000273# Effective tblgen executable to be used:
274set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000275
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000276add_subdirectory(utils/TableGen)
277
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000278if( CMAKE_CROSSCOMPILING )
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000279 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000280 include( CrossCompileLLVM )
281endif( CMAKE_CROSSCOMPILING )
282
Oscar Fuentes78939712008-11-15 00:24:38 +0000283add_subdirectory(include/llvm)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000284
Oscar Fuentes00905d52008-09-22 01:08:49 +0000285add_subdirectory(lib/VMCore)
286add_subdirectory(lib/CodeGen)
287add_subdirectory(lib/CodeGen/SelectionDAG)
288add_subdirectory(lib/CodeGen/AsmPrinter)
289add_subdirectory(lib/Bitcode/Reader)
290add_subdirectory(lib/Bitcode/Writer)
291add_subdirectory(lib/Transforms/Utils)
292add_subdirectory(lib/Transforms/Instrumentation)
293add_subdirectory(lib/Transforms/Scalar)
294add_subdirectory(lib/Transforms/IPO)
295add_subdirectory(lib/Transforms/Hello)
296add_subdirectory(lib/Linker)
297add_subdirectory(lib/Analysis)
298add_subdirectory(lib/Analysis/IPA)
Daniel Dunbar6bedec12009-06-23 22:01:43 +0000299add_subdirectory(lib/MC)
Daniel Dunbara4acff72009-09-22 07:38:44 +0000300add_subdirectory(test)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000301
Douglas Gregorda30a362009-07-20 18:30:25 +0000302add_subdirectory(utils/FileCheck)
Daniel Dunbara8b80712009-09-24 06:23:57 +0000303add_subdirectory(utils/count)
304add_subdirectory(utils/not)
Douglas Gregorda30a362009-07-20 18:30:25 +0000305
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000306set(LLVM_ENUM_ASM_PRINTERS "")
307set(LLVM_ENUM_ASM_PARSERS "")
Daniel Dunbar4b0b0e42009-11-25 04:30:13 +0000308set(LLVM_ENUM_DISASSEMBLERS "")
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000309foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000310 message(STATUS "Targeting ${t}")
311 add_subdirectory(lib/Target/${t})
Daniel Dunbar26a8dfc2009-07-15 07:04:27 +0000312 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentes9cd56a02008-11-14 22:21:02 +0000313 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000314 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000315 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000316 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
317 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000318 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000319 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000320 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000321 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
322 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Daniel Dunbar4b0b0e42009-11-25 04:30:13 +0000323 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
324 add_subdirectory(lib/Target/${t}/Disassembler)
325 set(LLVM_ENUM_DISASSEMBLERS
326 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
327 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
Oscar Fuentes01833482009-08-16 05:16:43 +0000328 set(CURRENT_LLVM_TARGET)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000329endforeach(t)
330
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000331# Produce llvm/Config/AsmPrinters.def
332configure_file(
333 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
334 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
335 )
336
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000337# Produce llvm/Config/AsmParsers.def
338configure_file(
339 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
340 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
341 )
342
Daniel Dunbar4b0b0e42009-11-25 04:30:13 +0000343# Produce llvm/Config/Disassemblers.def
344configure_file(
345 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
346 ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def
347 )
348
Oscar Fuentes00905d52008-09-22 01:08:49 +0000349add_subdirectory(lib/ExecutionEngine)
350add_subdirectory(lib/ExecutionEngine/Interpreter)
351add_subdirectory(lib/ExecutionEngine/JIT)
352add_subdirectory(lib/Target)
353add_subdirectory(lib/AsmParser)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000354add_subdirectory(lib/Archive)
355
Oscar Fuentes7b6742b2009-03-06 01:16:52 +0000356add_subdirectory(projects)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000357
Oscar Fuentes3cbe67d2009-08-16 20:56:30 +0000358option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
Oscar Fuentesd59ab132009-11-23 00:21:43 +0000359add_subdirectory(tools)
Oscar Fuentes3cbe67d2009-08-16 20:56:30 +0000360
Daniel Dunbar82262042009-11-18 17:42:22 +0000361option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF)
Oscar Fuentesd59ab132009-11-23 00:21:43 +0000362add_subdirectory(examples)
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000363
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000364install(DIRECTORY include/
365 DESTINATION include
366 FILES_MATCHING
Oscar Fuentesbf1bacb2009-10-30 11:42:08 +0000367 PATTERN "*.def"
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000368 PATTERN "*.h"
369 PATTERN "*.td"
Oscar Fuentes408a5e52009-10-27 20:04:22 +0000370 PATTERN "*.inc"
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000371 PATTERN ".svn" EXCLUDE
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000372 )
373
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000374install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
375 DESTINATION include
376 FILES_MATCHING
377 PATTERN "*.def"
378 PATTERN "*.h"
379 PATTERN "*.gen"
Oscar Fuentes408a5e52009-10-27 20:04:22 +0000380 PATTERN "*.inc"
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000381 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
382 PATTERN "CMakeFiles" EXCLUDE
383 PATTERN ".svn" EXCLUDE
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000384 )
385
386# TODO: make and install documentation.