blob: 39ccfbb1082ff2a383a8c317bf67ca3ddd413d7a [file] [log] [blame]
Oscar Fuentes34fc5172009-04-04 22:52:02 +00001# See docs/CMake.html for instructions about how to build LLVM with CMake.
2
Cedric Venet1d083f42008-10-30 21:22:00 +00003project(LLVM)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +00004cmake_minimum_required(VERSION 2.6.1)
5
6set(PACKAGE_NAME llvm)
Douglas Gregor022fc3e2009-08-22 06:30:31 +00007set(PACKAGE_VERSION 2.7svn)
Chris Lattner8c46e852009-01-28 17:49:03 +00008set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Oscar Fuentesf7e73b92008-10-25 03:49:35 +00009set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000010
Oscar Fuentes6326a0d2008-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 Fuentes81a87552009-06-03 15:11:25 +000020string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
21
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000022set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes980e8422008-10-29 02:33:15 +000023set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentes3d01fc72008-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 Fuentesaf0f65f2009-06-12 02:49:53 +000027set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000028
Oscar Fuentes6761c5d2009-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 Fuentes4f21c132008-11-10 01:47:07 +000047set(LLVM_ALL_TARGETS
48 Alpha
49 ARM
Jakob Stoklund Olesen73b7bb72009-08-02 17:32:37 +000050 Blackfin
Oscar Fuentes4f21c132008-11-10 01:47:07 +000051 CBackend
52 CellSPU
53 CppBackend
Oscar Fuentes4f21c132008-11-10 01:47:07 +000054 Mips
55 MSIL
Richard Penningtona51984b2009-07-09 20:27:09 +000056 MSP430
Oscar Fuentes4f21c132008-11-10 01:47:07 +000057 PIC16
58 PowerPC
59 Sparc
Daniel Dunbar3f189a32009-07-20 00:24:17 +000060 SystemZ
Oscar Fuentes4f21c132008-11-10 01:47:07 +000061 X86
62 XCore
63 )
64
Oscar Fuentese1ad0872008-09-26 04:40:32 +000065if( MSVC )
66 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentes4f21c132008-11-10 01:47:07 +000067 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentese1ad0872008-09-26 04:40:32 +000068else( MSVC )
Oscar Fuentes4f21c132008-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 Fuentese1ad0872008-09-26 04:40:32 +000071endif( MSVC )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +000072
Oscar Fuentes8e3c1692009-11-12 06:48:09 +000073set(C_INCLUDE_DIRS "" CACHE STRING
74 "Colon separated list of directories clang will search for headers.")
75
Oscar Fuentesa9ff1392009-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 Fuentes4b442832008-11-18 23:45:21 +000079option(LLVM_ENABLE_THREADS "Use threads if available." ON)
80
Oscar Fuentes81a87552009-06-03 15:11:25 +000081if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes76941b22009-06-04 09:26:16 +000082 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes81a87552009-06-03 15:11:25 +000083else()
Oscar Fuentes76941b22009-06-04 09:26:16 +000084 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes81a87552009-06-03 15:11:25 +000085endif()
86
Oscar Fuentes76941b22009-06-04 09:26:16 +000087if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentesaf109102009-07-05 18:43:52 +000088 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentese8c81ea2009-07-05 23:58:20 +000089 if( NOT MSVC )
Oscar Fuentesaf109102009-07-05 18:43:52 +000090 add_definitions( -D_DEBUG )
91 endif()
Oscar Fuentes76941b22009-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 Fuentes81a87552009-06-03 15:11:25 +0000101endif()
102
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000103if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
104 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
105endif()
106
Douglas Gregor1555a232009-06-16 20:12:29 +0000107set(LLVM_ENUM_TARGETS "")
Oscar Fuentes4f21c132008-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 Greif9befba82009-08-12 08:37:37 +0000111 message(FATAL_ERROR "The target `${c}' does not exist.
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000112 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1555a232009-06-16 20:12:29 +0000113 else()
114 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentes4f21c132008-11-10 01:47:07 +0000115 endif()
116endforeach(c)
117
Douglas Gregor1555a232009-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 Fuentes3d01fc72008-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 Fuentes9a0107d2009-04-04 22:41:07 +0000133include(AddLLVMDefinitions)
134
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000135if(WIN32)
Oscar Fuentes4fd38b82008-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 Fuentes3d01fc72008-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 Dunbar05dafd82009-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 Fuentes3d01fc72008-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 Fuentesde98db32008-10-25 03:29:36 +0000164include(config-ix)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000165
Oscar Fuentes1e02bf02009-08-18 15:29:35 +0000166option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000167
Douglas Gregor318de602009-06-05 23:46:34 +0000168set(ENABLE_PIC 0)
Oscar Fuentes64fb4c82008-11-20 19:13:51 +0000169if( LLVM_ENABLE_PIC )
Daniel Dunbar36206182009-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 Fuentes64fb4c82008-11-20 19:13:51 +0000183endif()
184
Oscar Fuentes3d01fc72008-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 Fuentes9a0107d2009-04-04 22:41:07 +0000191add_llvm_definitions( -D__STDC_LIMIT_MACROS )
192add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000193
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000194if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
195 # TODO: support other platforms and toolchains.
Oscar Fuentes6307b942008-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 Fuentesb0c56992008-11-04 03:27:24 +0000198 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentes9a0107d2009-04-04 22:41:07 +0000199 add_llvm_definitions( -m32 )
Oscar Fuentes6307b942008-11-19 00:10:39 +0000200 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
201 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentes6307b942008-11-19 00:10:39 +0000202 endif( LLVM_BUILD_32_BITS )
Oscar Fuentesb0c56992008-11-04 03:27:24 +0000203endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
204
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000205if( MSVC )
Stefanus Du Toit4ba3a0e2009-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 Fuentes9a0107d2009-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 Toit4ba3a0e2009-06-08 21:18:31 +0000217
Daniel Dunbar2c4df5a2009-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 Toit4ba3a0e2009-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 Fuentes3d01fc72008-09-22 01:08:49 +0000229endif( MSVC )
230
Oscar Fuentes980e8422008-10-29 02:33:15 +0000231include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000232
Edward O'Callaghanc6cf5fe2009-10-12 04:00:11 +0000233if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
234 SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/System/Solaris.h")
235endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
236
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000237include(AddLLVM)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000238include(TableGen)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000239
240add_subdirectory(lib/Support)
241add_subdirectory(lib/System)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000242
243# Everything else depends on Support and System:
244set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
245
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000246set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes41bdedf2008-11-10 02:35:55 +0000247 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentes99b94892009-06-11 04:16:10 +0000248# Effective tblgen executable to be used:
249set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000250
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000251add_subdirectory(utils/TableGen)
252
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000253if( CMAKE_CROSSCOMPILING )
Oscar Fuentes02516ba2008-11-10 01:32:14 +0000254 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentes3ab40ca2008-11-09 18:53:19 +0000255 include( CrossCompileLLVM )
256endif( CMAKE_CROSSCOMPILING )
257
Oscar Fuentes422fcf32008-11-15 00:24:38 +0000258add_subdirectory(include/llvm)
Oscar Fuentes1d8e4cf2008-09-22 18:21:51 +0000259
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000260add_subdirectory(lib/VMCore)
261add_subdirectory(lib/CodeGen)
262add_subdirectory(lib/CodeGen/SelectionDAG)
263add_subdirectory(lib/CodeGen/AsmPrinter)
264add_subdirectory(lib/Bitcode/Reader)
265add_subdirectory(lib/Bitcode/Writer)
266add_subdirectory(lib/Transforms/Utils)
267add_subdirectory(lib/Transforms/Instrumentation)
268add_subdirectory(lib/Transforms/Scalar)
269add_subdirectory(lib/Transforms/IPO)
270add_subdirectory(lib/Transforms/Hello)
271add_subdirectory(lib/Linker)
272add_subdirectory(lib/Analysis)
273add_subdirectory(lib/Analysis/IPA)
Daniel Dunbarecc63f82009-06-23 22:01:43 +0000274add_subdirectory(lib/MC)
Daniel Dunbara1774922009-09-22 07:38:44 +0000275add_subdirectory(test)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000276
Douglas Gregor4d20c242009-07-20 18:30:25 +0000277add_subdirectory(utils/FileCheck)
Daniel Dunbar48f7ce82009-09-24 06:23:57 +0000278add_subdirectory(utils/count)
279add_subdirectory(utils/not)
Douglas Gregor4d20c242009-07-20 18:30:25 +0000280
Oscar Fuentes75caad42009-08-14 04:55:21 +0000281set(LLVM_ENUM_ASM_PRINTERS "")
282set(LLVM_ENUM_ASM_PARSERS "")
Daniel Dunbarfa3f0b92009-11-25 04:30:13 +0000283set(LLVM_ENUM_DISASSEMBLERS "")
Oscar Fuentes75caad42009-08-14 04:55:21 +0000284foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000285 message(STATUS "Targeting ${t}")
286 add_subdirectory(lib/Target/${t})
Daniel Dunbarb5a8c082009-07-15 07:04:27 +0000287 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentescccecb82008-11-14 22:21:02 +0000288 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes75caad42009-08-14 04:55:21 +0000289 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1555a232009-06-16 20:12:29 +0000290 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes75caad42009-08-14 04:55:21 +0000291 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
292 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000293 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes75caad42009-08-14 04:55:21 +0000294 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000295 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes75caad42009-08-14 04:55:21 +0000296 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
297 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Daniel Dunbarfa3f0b92009-11-25 04:30:13 +0000298 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
299 add_subdirectory(lib/Target/${t}/Disassembler)
300 set(LLVM_ENUM_DISASSEMBLERS
301 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
302 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
Oscar Fuentesb78829e2009-08-16 05:16:43 +0000303 set(CURRENT_LLVM_TARGET)
Oscar Fuentese1ad0872008-09-26 04:40:32 +0000304endforeach(t)
305
Douglas Gregor1555a232009-06-16 20:12:29 +0000306# Produce llvm/Config/AsmPrinters.def
307configure_file(
308 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
309 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
310 )
311
Daniel Dunbar092a9dd2009-07-17 20:42:00 +0000312# Produce llvm/Config/AsmParsers.def
313configure_file(
314 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
315 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
316 )
317
Daniel Dunbarfa3f0b92009-11-25 04:30:13 +0000318# Produce llvm/Config/Disassemblers.def
319configure_file(
320 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
321 ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def
322 )
323
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000324add_subdirectory(lib/ExecutionEngine)
325add_subdirectory(lib/ExecutionEngine/Interpreter)
326add_subdirectory(lib/ExecutionEngine/JIT)
327add_subdirectory(lib/Target)
328add_subdirectory(lib/AsmParser)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000329add_subdirectory(lib/Archive)
330
Oscar Fuentes5c6bf652009-03-06 01:16:52 +0000331add_subdirectory(projects)
Oscar Fuentes3d01fc72008-09-22 01:08:49 +0000332
Oscar Fuentesc81f56d2009-08-16 20:56:30 +0000333option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
Oscar Fuentesb8352de2009-11-23 00:21:43 +0000334add_subdirectory(tools)
Oscar Fuentesc81f56d2009-08-16 20:56:30 +0000335
Daniel Dunbare1caa982009-11-18 17:42:22 +0000336option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF)
Oscar Fuentesb8352de2009-11-23 00:21:43 +0000337add_subdirectory(examples)
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000338
Oscar Fuentes1d7c43b2009-10-27 19:57:29 +0000339install(DIRECTORY include/
340 DESTINATION include
341 FILES_MATCHING
Oscar Fuentesbc2eb132009-10-30 11:42:08 +0000342 PATTERN "*.def"
Oscar Fuentes1d7c43b2009-10-27 19:57:29 +0000343 PATTERN "*.h"
344 PATTERN "*.td"
Oscar Fuentesa2281e72009-10-27 20:04:22 +0000345 PATTERN "*.inc"
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000346 PATTERN ".svn" EXCLUDE
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000347 )
348
Oscar Fuentes1d7c43b2009-10-27 19:57:29 +0000349install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
350 DESTINATION include
351 FILES_MATCHING
352 PATTERN "*.def"
353 PATTERN "*.h"
354 PATTERN "*.gen"
Oscar Fuentesa2281e72009-10-27 20:04:22 +0000355 PATTERN "*.inc"
Oscar Fuentes1d7c43b2009-10-27 19:57:29 +0000356 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
357 PATTERN "CMakeFiles" EXCLUDE
358 PATTERN ".svn" EXCLUDE
Oscar Fuentes1dc97162008-10-22 02:56:07 +0000359 )
360
361# TODO: make and install documentation.