blob: 6fbaa5d45496a1560e00365703647e5febf4f2f5 [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
Cedric Venet6c9f3ec2008-10-30 21:22:00 +00003project(LLVM)
Oscar Fuentes758f71a2010-08-03 15:07:17 +00004cmake_minimum_required(VERSION 2.8)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +00005
Oscar Fuentes052c23c2010-08-03 17:28:09 +00006# Add path for custom modules
7set(CMAKE_MODULE_PATH
8 ${CMAKE_MODULE_PATH}
9 "${CMAKE_CURRENT_SOURCE_DIR}/cmake"
10 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules"
11 )
12
13set(PACKAGE_VERSION "2.8")
14include(VersionFromVCS)
15add_version_info_from_vcs(PACKAGE_VERSION)
16
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000017set(PACKAGE_NAME llvm)
Chris Lattnerff2d99d2009-01-28 17:49:03 +000018set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
Oscar Fuentes24617b72008-10-25 03:49:35 +000019set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu")
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000020
Oscar Fuentesa5f83562008-11-14 03:43:18 +000021if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
22 message(FATAL_ERROR "In-source builds are not allowed.
23CMake would overwrite the makefiles distributed with LLVM.
24Please create a directory and run cmake from there, passing the path
25to this source directory as the last argument.
26This process created the file `CMakeCache.txt' and the directory `CMakeFiles'.
27Please delete them.")
28endif()
29
Oscar Fuentes61338132009-06-03 15:11:25 +000030string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE)
31
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000032set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR})
Oscar Fuentes2500aae2008-10-29 02:33:15 +000033set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000034set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
35set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin)
36set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples)
Oscar Fuentes46fed3b2009-06-12 02:49:53 +000037set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000038
Oscar Fuentes304396a2009-07-13 21:58:44 +000039if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
40 file(GLOB_RECURSE
41 tablegenned_files_on_include_dir
42 "${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen")
43 file(GLOB_RECURSE
44 tablegenned_files_on_lib_dir
45 "${LLVM_MAIN_SRC_DIR}/lib/Target/*.inc")
46 if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir)
47 message(FATAL_ERROR "Apparently there is a previous in-source build,
48probably as the result of running `configure' and `make' on
49${LLVM_MAIN_SRC_DIR}.
50This may cause problems. The suspicious files are:
51${tablegenned_files_on_lib_dir}
52${tablegenned_files_on_include_dir}
53Please clean the source directory.")
54 endif()
55endif()
56
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000057set(LLVM_ALL_TARGETS
58 Alpha
59 ARM
Jakob Stoklund Olesen526e8032009-08-02 17:32:37 +000060 Blackfin
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000061 CBackend
62 CellSPU
63 CppBackend
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000064 Mips
Wesley Peckb0578bf2010-03-05 15:15:55 +000065 MBlaze
Richard Pennington9f3bd4a2009-07-09 20:27:09 +000066 MSP430
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000067 PIC16
68 PowerPC
69 Sparc
Daniel Dunbar88f35c82009-07-20 00:24:17 +000070 SystemZ
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000071 X86
72 XCore
73 )
74
Oscar Fuentescdc95492008-09-26 04:40:32 +000075if( MSVC )
76 set(LLVM_TARGETS_TO_BUILD X86
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000077 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentescdc95492008-09-26 04:40:32 +000078else( MSVC )
Oscar Fuentese9edc2c2008-11-10 01:47:07 +000079 set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS}
80 CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
Oscar Fuentescdc95492008-09-26 04:40:32 +000081endif( MSVC )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +000082
Oscar Fuentes700205c2009-11-12 06:48:09 +000083set(C_INCLUDE_DIRS "" CACHE STRING
84 "Colon separated list of directories clang will search for headers.")
85
Oscar Fuentesb9a78132009-09-13 22:18:38 +000086set(LLVM_TARGET_ARCH "host"
87 CACHE STRING "Set target to use for LLVM JIT or use \"host\" for automatic detection.")
88
Oscar Fuentes366fbb72008-11-18 23:45:21 +000089option(LLVM_ENABLE_THREADS "Use threads if available." ON)
90
Oscar Fuentes61338132009-06-03 15:11:25 +000091if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
Oscar Fuentes208a8732009-06-04 09:26:16 +000092 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
Oscar Fuentes61338132009-06-03 15:11:25 +000093else()
Oscar Fuentes208a8732009-06-04 09:26:16 +000094 option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
Oscar Fuentes61338132009-06-03 15:11:25 +000095endif()
96
Oscar Fuentes208a8732009-06-04 09:26:16 +000097if( LLVM_ENABLE_ASSERTIONS )
Oscar Fuentes56745312009-07-05 18:43:52 +000098 # MSVC doesn't like _DEBUG on release builds. See PR 4379.
Oscar Fuentesc296b892009-07-05 23:58:20 +000099 if( NOT MSVC )
Oscar Fuentes56745312009-07-05 18:43:52 +0000100 add_definitions( -D_DEBUG )
101 endif()
Oscar Fuentes208a8732009-06-04 09:26:16 +0000102 # On Release builds cmake automatically defines NDEBUG, so we
103 # explicitly undefine it:
104 if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
105 add_definitions( -UNDEBUG )
106 endif()
107else()
108 if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
109 add_definitions( -DNDEBUG )
110 endif()
Oscar Fuentes61338132009-06-03 15:11:25 +0000111endif()
112
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000113if( LLVM_TARGETS_TO_BUILD STREQUAL "all" )
114 set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} )
115endif()
116
Douglas Gregor1b731d52009-06-16 20:12:29 +0000117set(LLVM_ENUM_TARGETS "")
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000118foreach(c ${LLVM_TARGETS_TO_BUILD})
119 list(FIND LLVM_ALL_TARGETS ${c} idx)
120 if( idx LESS 0 )
Gabor Greif27c7a9d2009-08-12 08:37:37 +0000121 message(FATAL_ERROR "The target `${c}' does not exist.
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000122 It should be one of\n${LLVM_ALL_TARGETS}")
Douglas Gregor1b731d52009-06-16 20:12:29 +0000123 else()
124 set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n")
Oscar Fuentese9edc2c2008-11-10 01:47:07 +0000125 endif()
126endforeach(c)
127
Douglas Gregor1b731d52009-06-16 20:12:29 +0000128# Produce llvm/Config/Targets.def
129configure_file(
130 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in
131 ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def
132 )
133
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000134set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm)
135
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000136include(AddLLVMDefinitions)
137
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000138if(WIN32)
Oscar Fuentes876aa172008-10-30 17:15:54 +0000139 if(CYGWIN)
140 set(LLVM_ON_WIN32 0)
141 set(LLVM_ON_UNIX 1)
142 else(CYGWIN)
143 set(LLVM_ON_WIN32 1)
144 set(LLVM_ON_UNIX 0)
145 endif(CYGWIN)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000146 set(LTDL_SHLIB_EXT ".dll")
147 set(EXEEXT ".exe")
148 # Maximum path length is 160 for non-unicode paths
149 set(MAXPATHLEN 160)
150else(WIN32)
151 if(UNIX)
152 set(LLVM_ON_WIN32 0)
153 set(LLVM_ON_UNIX 1)
Daniel Dunbar6ce1ab12009-09-22 06:09:37 +0000154 if(APPLE)
155 set(LTDL_SHLIB_EXT ".dylib")
156 else(APPLE)
157 set(LTDL_SHLIB_EXT ".so")
158 endif(APPLE)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000159 set(EXEEXT "")
160 # FIXME: Maximum path length is currently set to 'safe' fixed value
161 set(MAXPATHLEN 2024)
162 else(UNIX)
163 MESSAGE(SEND_ERROR "Unable to determine platform")
164 endif(UNIX)
165endif(WIN32)
166
Oscar Fuentesa9ac9092008-10-25 03:29:36 +0000167include(config-ix)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000168
Oscar Fuentes6d61f552009-08-18 15:29:35 +0000169option(LLVM_ENABLE_PIC "Build Position-Independent Code" ON)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000170
Douglas Gregor5f11afc2009-06-05 23:46:34 +0000171set(ENABLE_PIC 0)
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000172if( LLVM_ENABLE_PIC )
Daniel Dunbar3908a402009-11-08 00:34:22 +0000173 if( XCODE )
174 # Xcode has -mdynamic-no-pic on by default, which overrides -fPIC. I don't
175 # know how to disable this, so just force ENABLE_PIC off for now.
176 message(STATUS "Warning: -fPIC not supported with Xcode.")
177 else( XCODE )
178 if( SUPPORTS_FPIC_FLAG )
179 message(STATUS "Building with -fPIC")
180 add_llvm_definitions(-fPIC)
181 set(ENABLE_PIC 1)
182 else( SUPPORTS_FPIC_FLAG )
183 message(STATUS "Warning: -fPIC not supported.")
184 endif()
185 endif()
Oscar Fuentes073b0b12008-11-20 19:13:51 +0000186endif()
187
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000188set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} )
189set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
190set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib )
191
192# set(CMAKE_VERBOSE_MAKEFILE true)
193
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000194add_llvm_definitions( -D__STDC_LIMIT_MACROS )
195add_llvm_definitions( -D__STDC_CONSTANT_MACROS )
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000196
Daniel Dunbar04433fe2009-12-01 19:11:36 +0000197# MSVC has a gazillion warnings with this.
198if( MSVC )
199 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." OFF)
200else( MSVC )
201 option(LLVM_ENABLE_WARNINGS "Enable compiler warnings." ON)
202endif()
203
Oscar Fuentes5c600b52009-12-01 02:21:51 +0000204option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
205option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
206
Oscar Fuentes7751a7b2008-11-04 03:27:24 +0000207if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
208 # TODO: support other platforms and toolchains.
Oscar Fuentes32581492008-11-19 00:10:39 +0000209 option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF)
210 if( LLVM_BUILD_32_BITS )
Oscar Fuentes7751a7b2008-11-04 03:27:24 +0000211 message(STATUS "Building 32 bits executables and libraries.")
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000212 add_llvm_definitions( -m32 )
Oscar Fuentes32581492008-11-19 00:10:39 +0000213 list(APPEND CMAKE_EXE_LINKER_FLAGS -m32)
214 list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32)
Oscar Fuentes32581492008-11-19 00:10:39 +0000215 endif( LLVM_BUILD_32_BITS )
Oscar Fuentes7751a7b2008-11-04 03:27:24 +0000216endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 )
217
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000218if( MSVC )
Oscar Fuentes396cc7d2010-08-05 01:25:48 +0000219 include(ChooseMSVCCRT)
Stefanus Du Toit6b602ad2009-06-08 21:18:31 +0000220
Oscar Fuentesbda403b2009-04-04 22:41:07 +0000221 add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS )
222 add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS )
223 add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE )
224 add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
225 add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
Stefanus Du Toit6b602ad2009-06-08 21:18:31 +0000226
Daniel Dunbaracd56a02009-07-19 01:35:10 +0000227 # Suppress 'new behavior: elements of array 'array' will be default initialized'
228 add_llvm_definitions( -wd4351 )
229
Oscar Fuentes5c600b52009-12-01 02:21:51 +0000230 # Enable warnings
231 if (LLVM_ENABLE_WARNINGS)
232 add_llvm_definitions( /W4 /Wall )
233 if (LLVM_ENABLE_PEDANTIC)
234 # No MSVC equivalent available
235 endif (LLVM_ENABLE_PEDANTIC)
236 endif (LLVM_ENABLE_WARNINGS)
237 if (LLVM_ENABLE_WERROR)
238 add_llvm_definitions( /WX )
239 endif (LLVM_ENABLE_WERROR)
Oscar Fuentescc717832009-11-30 23:50:14 +0000240elseif( CMAKE_COMPILER_IS_GNUCXX )
Oscar Fuentes5c600b52009-12-01 02:21:51 +0000241 if (LLVM_ENABLE_WARNINGS)
242 add_llvm_definitions( -Wall -W -Wno-unused-parameter -Wwrite-strings )
243 if (LLVM_ENABLE_PEDANTIC)
244 add_llvm_definitions( -pedantic -Wno-long-long )
245 endif (LLVM_ENABLE_PEDANTIC)
246 endif (LLVM_ENABLE_WARNINGS)
247 if (LLVM_ENABLE_WERROR)
248 add_llvm_definitions( -Werror )
249 endif (LLVM_ENABLE_WERROR)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000250endif( MSVC )
251
Oscar Fuentes2500aae2008-10-29 02:33:15 +0000252include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR})
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000253
Edward O'Callaghan396ed2b2009-10-12 04:00:11 +0000254if( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
255 SET(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-include llvm/System/Solaris.h")
256endif( ${CMAKE_SYSTEM_NAME} MATCHES SunOS )
257
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000258include(AddLLVM)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000259include(TableGen)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000260
Michael J. Spencer7c3a5ee2010-09-11 02:13:39 +0000261if( MINGW )
262 get_system_libs(LLVM_SYSTEM_LIBS_LIST)
263 foreach(l ${LLVM_SYSTEM_LIBS_LIST})
264 set(LLVM_SYSTEM_LIBS "${LLVM_SYSTEM_LIBS} -l${l}")
265 endforeach()
266 set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES}${LLVM_SYSTEM_LIBS}")
267 set(CMAKE_C_STANDARD_LIBRARIES "${CMAKE_C_STANDARD_LIBRARIES}${LLVM_SYSTEM_LIBS}")
268endif()
269
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000270add_subdirectory(lib/Support)
271add_subdirectory(lib/System)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000272
273# Everything else depends on Support and System:
274set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} )
Michael J. Spencerdc38d362010-09-10 21:14:25 +0000275set(LLVM_COMMON_LIBS LLVMSupport LLVMSystem)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000276
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000277set(LLVM_TABLEGEN "tblgen" CACHE
Oscar Fuentes9530edd2008-11-10 02:35:55 +0000278 STRING "Native TableGen executable. Saves building one when cross-compiling.")
Oscar Fuentescaa7a942009-06-11 04:16:10 +0000279# Effective tblgen executable to be used:
280set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN})
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000281
Oscar Fuentese352ca02008-11-10 01:32:14 +0000282add_subdirectory(utils/TableGen)
283
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000284if( CMAKE_CROSSCOMPILING )
Oscar Fuentese352ca02008-11-10 01:32:14 +0000285 # This adds a dependency on target `tblgen', so must go after utils/TableGen
Oscar Fuentesb45a43a2008-11-09 18:53:19 +0000286 include( CrossCompileLLVM )
287endif( CMAKE_CROSSCOMPILING )
288
Oscar Fuentesdc8d56e2008-11-15 00:24:38 +0000289add_subdirectory(include/llvm)
Oscar Fuentes8807bdd2008-09-22 18:21:51 +0000290
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000291add_subdirectory(lib/VMCore)
292add_subdirectory(lib/CodeGen)
293add_subdirectory(lib/CodeGen/SelectionDAG)
294add_subdirectory(lib/CodeGen/AsmPrinter)
295add_subdirectory(lib/Bitcode/Reader)
296add_subdirectory(lib/Bitcode/Writer)
297add_subdirectory(lib/Transforms/Utils)
298add_subdirectory(lib/Transforms/Instrumentation)
Douglas Gregor5b88b8a2010-01-04 21:58:55 +0000299add_subdirectory(lib/Transforms/InstCombine)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000300add_subdirectory(lib/Transforms/Scalar)
301add_subdirectory(lib/Transforms/IPO)
302add_subdirectory(lib/Transforms/Hello)
303add_subdirectory(lib/Linker)
304add_subdirectory(lib/Analysis)
305add_subdirectory(lib/Analysis/IPA)
Daniel Dunbarca29e4d2009-06-23 22:01:43 +0000306add_subdirectory(lib/MC)
Daniel Dunbar4dcd3b22010-01-22 02:04:33 +0000307add_subdirectory(lib/MC/MCParser)
Chris Lattner979634b2010-07-20 18:25:19 +0000308add_subdirectory(lib/MC/MCDisassembler)
Daniel Dunbar28830b32009-09-22 07:38:44 +0000309add_subdirectory(test)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000310
Douglas Gregor289dfc52009-07-20 18:30:25 +0000311add_subdirectory(utils/FileCheck)
Daniel Dunbar00dd4482009-09-24 06:23:57 +0000312add_subdirectory(utils/count)
313add_subdirectory(utils/not)
Michael J. Spencer885611b2010-09-13 17:52:38 +0000314add_subdirectory(utils/llvm-lit)
Douglas Gregor289dfc52009-07-20 18:30:25 +0000315
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000316set(LLVM_ENUM_ASM_PRINTERS "")
317set(LLVM_ENUM_ASM_PARSERS "")
Daniel Dunbarf4721292009-11-25 04:30:13 +0000318set(LLVM_ENUM_DISASSEMBLERS "")
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000319foreach(t ${LLVM_TARGETS_TO_BUILD})
Oscar Fuentescdc95492008-09-26 04:40:32 +0000320 message(STATUS "Targeting ${t}")
321 add_subdirectory(lib/Target/${t})
Daniel Dunbarb3ec4882009-07-15 07:04:27 +0000322 add_subdirectory(lib/Target/${t}/TargetInfo)
Oscar Fuentes070114f2008-11-14 22:21:02 +0000323 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000324 add_subdirectory(lib/Target/${t}/AsmPrinter)
Douglas Gregor1b731d52009-06-16 20:12:29 +0000325 set(LLVM_ENUM_ASM_PRINTERS
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000326 "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n")
327 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt )
Daniel Dunbar71475772009-07-17 20:42:00 +0000328 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000329 add_subdirectory(lib/Target/${t}/AsmParser)
Daniel Dunbar71475772009-07-17 20:42:00 +0000330 set(LLVM_ENUM_ASM_PARSERS
Oscar Fuentes7a87d662009-08-14 04:55:21 +0000331 "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n")
332 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt )
Daniel Dunbarf4721292009-11-25 04:30:13 +0000333 if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
334 add_subdirectory(lib/Target/${t}/Disassembler)
335 set(LLVM_ENUM_DISASSEMBLERS
336 "${LLVM_ENUM_DISASSEMBLERS}LLVM_DISASSEMBLER(${t})\n")
337 endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/Disassembler/CMakeLists.txt )
Oscar Fuentes8160d282009-08-16 05:16:43 +0000338 set(CURRENT_LLVM_TARGET)
Oscar Fuentescdc95492008-09-26 04:40:32 +0000339endforeach(t)
340
Douglas Gregor1b731d52009-06-16 20:12:29 +0000341# Produce llvm/Config/AsmPrinters.def
342configure_file(
343 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in
344 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def
345 )
346
Daniel Dunbar71475772009-07-17 20:42:00 +0000347# Produce llvm/Config/AsmParsers.def
348configure_file(
349 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in
350 ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def
351 )
352
Daniel Dunbarf4721292009-11-25 04:30:13 +0000353# Produce llvm/Config/Disassemblers.def
354configure_file(
355 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Disassemblers.def.in
356 ${LLVM_BINARY_DIR}/include/llvm/Config/Disassemblers.def
357 )
358
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000359add_subdirectory(lib/ExecutionEngine)
360add_subdirectory(lib/ExecutionEngine/Interpreter)
361add_subdirectory(lib/ExecutionEngine/JIT)
362add_subdirectory(lib/Target)
363add_subdirectory(lib/AsmParser)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000364add_subdirectory(lib/Archive)
365
Oscar Fuentesafbe9752009-03-06 01:16:52 +0000366add_subdirectory(projects)
Oscar Fuentesa229b3c2008-09-22 01:08:49 +0000367
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000368option(LLVM_BUILD_TOOLS "Build LLVM tool programs." ON)
Oscar Fuentes0c2443a2009-11-23 00:21:43 +0000369add_subdirectory(tools)
Oscar Fuentesacfd9ad2009-08-16 20:56:30 +0000370
Daniel Dunbar06d8c242009-11-18 17:42:22 +0000371option(LLVM_BUILD_EXAMPLES "Build LLVM example programs." OFF)
Oscar Fuentes0c2443a2009-11-23 00:21:43 +0000372add_subdirectory(examples)
Oscar Fuentes64c99622008-10-22 02:56:07 +0000373
Oscar Fuentesa389c582010-08-09 03:26:43 +0000374add_subdirectory(cmake/modules)
375
Michael J. Spencerdc38d362010-09-10 21:14:25 +0000376install(EXPORT LLVM
377 DESTINATION lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm/
378 FILE LLVMTargets.cmake
379 )
380
Oscar Fuentes6997c642009-10-27 19:57:29 +0000381install(DIRECTORY include/
382 DESTINATION include
383 FILES_MATCHING
Oscar Fuentes15716f62009-10-30 11:42:08 +0000384 PATTERN "*.def"
Oscar Fuentes6997c642009-10-27 19:57:29 +0000385 PATTERN "*.h"
386 PATTERN "*.td"
Oscar Fuentes08875d12009-10-27 20:04:22 +0000387 PATTERN "*.inc"
Oscar Fuentes64c99622008-10-22 02:56:07 +0000388 PATTERN ".svn" EXCLUDE
Oscar Fuentes64c99622008-10-22 02:56:07 +0000389 )
390
Oscar Fuentes6997c642009-10-27 19:57:29 +0000391install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
392 DESTINATION include
393 FILES_MATCHING
394 PATTERN "*.def"
395 PATTERN "*.h"
396 PATTERN "*.gen"
Oscar Fuentes08875d12009-10-27 20:04:22 +0000397 PATTERN "*.inc"
Oscar Fuentes6997c642009-10-27 19:57:29 +0000398 # Exclude include/llvm/CMakeFiles/intrinsics_gen.dir, matched by "*.def"
399 PATTERN "CMakeFiles" EXCLUDE
400 PATTERN ".svn" EXCLUDE
Oscar Fuentes64c99622008-10-22 02:56:07 +0000401 )
402
403# TODO: make and install documentation.