blob: d609c84c0d63a37018d4e33978815fea029494db [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
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000194if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
195 # TODO: support other platforms and toolchains.
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000196 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
197 if( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000198 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000199 add_llvm_definitions( -m32 )
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000200 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
201 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentesc92a20d2008-11-19 00:10:39 +0000202 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesa48aa282008-11-04 03:27:24 +0000203endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
204
Oscar Fuentes00905d52008-09-22 01:08:49 +0000205if( MSVC )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000206 # List of valid CRTs for MSVC
207 set(MSVC_CRT
208 MD
209 MDd)
210
211 set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.")
Oscar Fuentesa7374582009-04-04 22:41:07 +0000212 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
213 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
214 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
215 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
216 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000217
Daniel Dunbar1b6445a2009-07-19 01:35:10 +0000218 # Suppress 'new behavior: elements of array 'array' will be default initialized'
219 add_llvm_definitions( -wd4351 )
220
Stefanus Du Toit75ab5fe2009-06-08 21:18:31 +0000221 if (NOT ${LLVM_USE_CRT} STREQUAL "")
222 list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
223 if (idx LESS 0)
224 message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}")
225 endif (idx LESS 0)
226 add_llvm_definitions("/${LLVM_USE_CRT}")
227 message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}")
228 endif (NOT ${LLVM_USE_CRT} STREQUAL "")
Oscar Fuentes63c90f62009-11-30 23:50:14 +0000229elseif( CMAKE_COMPILER_IS_GNUCXX )
230 add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
Oscar Fuentes00905d52008-09-22 01:08:49 +0000231endif( MSVC )
232
Oscar Fuentes3ae2f202008-10-29 02:33:15 +0000233include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes00905d52008-09-22 01:08:49 +0000234
Edward O'Callaghan84354c72009-10-12 04:00:11 +0000235if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
236 SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/System/Solaris.h")
237endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
238
Oscar Fuentes00905d52008-09-22 01:08:49 +0000239include(AddLLVM)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000240include(TableGen)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000241
242add_subdirectory(lib/Support)
243add_subdirectory(lib/System)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000244
245# Everything else depends on Support and System:
246set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
247
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000248set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentesc9a32592008-11-10 02:35:55 +0000249 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes232f1942009-06-11 04:16:10 +0000250# Effective tblgen executable to be used:
251set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000252
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000253add_subdirectory(utils/TableGen)
254
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000255if( CMAKE_CROSSCOMPILING )
Oscar Fuentes1f8a8482008-11-10 01:32:14 +0000256 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentescae0aba2008-11-09 18:53:19 +0000257 include( CrossCompileLLVM )
258endif( CMAKE_CROSSCOMPILING )
259
Oscar Fuentes78939712008-11-15 00:24:38 +0000260add_subdirectory(include/llvm)
Oscar Fuentes6883aa62008-09-22 18:21:51 +0000261
Oscar Fuentes00905d52008-09-22 01:08:49 +0000262add_subdirectory(lib/VMCore)
263add_subdirectory(lib/CodeGen)
264add_subdirectory(lib/CodeGen/SelectionDAG)
265add_subdirectory(lib/CodeGen/AsmPrinter)
266add_subdirectory(lib/Bitcode/Reader)
267add_subdirectory(lib/Bitcode/Writer)
268add_subdirectory(lib/Transforms/Utils)
269add_subdirectory(lib/Transforms/Instrumentation)
270add_subdirectory(lib/Transforms/Scalar)
271add_subdirectory(lib/Transforms/IPO)
272add_subdirectory(lib/Transforms/Hello)
273add_subdirectory(lib/Linker)
274add_subdirectory(lib/Analysis)
275add_subdirectory(lib/Analysis/IPA)
Daniel Dunbar6bedec12009-06-23 22:01:43 +0000276add_subdirectory(lib/MC)
Daniel Dunbara4acff72009-09-22 07:38:44 +0000277add_subdirectory(test)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000278
Douglas Gregorda30a362009-07-20 18:30:25 +0000279add_subdirectory(utils/FileCheck)
Daniel Dunbara8b80712009-09-24 06:23:57 +0000280add_subdirectory(utils/count)
281add_subdirectory(utils/not)
Douglas Gregorda30a362009-07-20 18:30:25 +0000282
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000283set(LLVM_ENUM_ASM_PRINTERS "")
284set(LLVM_ENUM_ASM_PARSERS "")
Daniel Dunbar4b0b0e42009-11-25 04:30:13 +0000285set(LLVM_ENUM_DISASSEMBLERS "")
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000286foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000287 message(STATUS "Targeting ${t}")
288 add_subdirectory(lib/Target/${t})
Daniel Dunbar26a8dfc2009-07-15 07:04:27 +0000289 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentes9cd56a02008-11-14 22:21:02 +0000290 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000291 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000292 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000293 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
294 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000295 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000296 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000297 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes5e9602a2009-08-14 04:55:21 +0000298 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
299 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Daniel Dunbar4b0b0e42009-11-25 04:30:13 +0000300 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
301 add_subdirectory(lib/Target/${t}/Disassembler)
302 set(LLVM_ENUM_DISASSEMBLERS
303 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
304 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
Oscar Fuentes01833482009-08-16 05:16:43 +0000305 set(CURRENT_LLVM_TARGET)
Oscar Fuentesda2a8a12008-09-26 04:40:32 +0000306endforeach(t)
307
Douglas Gregor1dc5ff42009-06-16 20:12:29 +0000308# Produce llvm/Config/AsmPrinters.def
309configure_file(
310 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
311 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
312 )
313
Daniel Dunbarc7df3cb2009-07-17 20:42:00 +0000314# Produce llvm/Config/AsmParsers.def
315configure_file(
316 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
317 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
318 )
319
Daniel Dunbar4b0b0e42009-11-25 04:30:13 +0000320# Produce llvm/Config/Disassemblers.def
321configure_file(
322 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
323 ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def
324 )
325
Oscar Fuentes00905d52008-09-22 01:08:49 +0000326add_subdirectory(lib/ExecutionEngine)
327add_subdirectory(lib/ExecutionEngine/Interpreter)
328add_subdirectory(lib/ExecutionEngine/JIT)
329add_subdirectory(lib/Target)
330add_subdirectory(lib/AsmParser)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000331add_subdirectory(lib/Archive)
332
Oscar Fuentes7b6742b2009-03-06 01:16:52 +0000333add_subdirectory(projects)
Oscar Fuentes00905d52008-09-22 01:08:49 +0000334
Oscar Fuentes3cbe67d2009-08-16 20:56:30 +0000335option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
Oscar Fuentesd59ab132009-11-23 00:21:43 +0000336add_subdirectory(tools)
Oscar Fuentes3cbe67d2009-08-16 20:56:30 +0000337
Daniel Dunbar82262042009-11-18 17:42:22 +0000338option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF)
Oscar Fuentesd59ab132009-11-23 00:21:43 +0000339add_subdirectory(examples)
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000340
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000341install(DIRECTORY include/
342 DESTINATION include
343 FILES_MATCHING
Oscar Fuentesbf1bacb2009-10-30 11:42:08 +0000344 PATTERN "*.def"
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000345 PATTERN "*.h"
346 PATTERN "*.td"
Oscar Fuentes408a5e52009-10-27 20:04:22 +0000347 PATTERN "*.inc"
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000348 PATTERN ".svn" EXCLUDE
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000349 )
350
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000351install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
352 DESTINATION include
353 FILES_MATCHING
354 PATTERN "*.def"
355 PATTERN "*.h"
356 PATTERN "*.gen"
Oscar Fuentes408a5e52009-10-27 20:04:22 +0000357 PATTERN "*.inc"
Oscar Fuentesd9693e62009-10-27 19:57:29 +0000358 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
359 PATTERN "CMakeFiles" EXCLUDE
360 PATTERN ".svn" EXCLUDE
Oscar Fuentesce0c31a2008-10-22 02:56:07 +0000361 )
362
363# TODO: make and install documentation.