Oscar Fuentes | 34fc517 | 2009-04-04 22:52:02 +0000 | [diff] [blame] | 1 | # See docs/CMake.html for instructions about how to build LLVM with CMake. |
| 2 | |
Cedric Venet | 1d083f4 | 2008-10-30 21:22:00 +0000 | [diff] [blame] | 3 | project(LLVM) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 4 | cmake_minimum_required(VERSION 2.6.1) |
| 5 | |
| 6 | set(PACKAGE_NAME llvm) |
Chris Lattner | 8c46e85 | 2009-01-28 17:49:03 +0000 | [diff] [blame] | 7 | set(PACKAGE_VERSION 2.6svn) |
| 8 | set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") |
Oscar Fuentes | f7e73b9 | 2008-10-25 03:49:35 +0000 | [diff] [blame] | 9 | set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu") |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 10 | |
Oscar Fuentes | 6326a0d | 2008-11-14 03:43:18 +0000 | [diff] [blame] | 11 | if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) |
| 12 | message(FATAL_ERROR "In-source builds are not allowed. |
| 13 | CMake would overwrite the makefiles distributed with LLVM. |
| 14 | Please create a directory and run cmake from there, passing the path |
| 15 | to this source directory as the last argument. |
| 16 | This process created the file `CMakeCache.txt' and the directory `CMakeFiles'. |
| 17 | Please delete them.") |
| 18 | endif() |
| 19 | |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 20 | string(TOUPPER "${CMAKE_BUILD_TYPE}" uppercase_CMAKE_BUILD_TYPE) |
| 21 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 22 | include(FindPerl) |
| 23 | |
| 24 | set(LLVM_MAIN_SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 25 | set(LLVM_MAIN_INCLUDE_DIR ${LLVM_MAIN_SRC_DIR}/include) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 26 | set(LLVM_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) |
| 27 | set(LLVM_TOOLS_BINARY_DIR ${LLVM_BINARY_DIR}/bin) |
| 28 | set(LLVM_EXAMPLES_BINARY_DIR ${LLVM_BINARY_DIR}/examples) |
Oscar Fuentes | af0f65f | 2009-06-12 02:49:53 +0000 | [diff] [blame] | 29 | set(LLVM_LIBDIR_SUFFIX "" CACHE STRING "Define suffix of library directory name (32/64)" ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 30 | |
Oscar Fuentes | 6761c5d | 2009-07-13 21:58:44 +0000 | [diff] [blame] | 31 | if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) |
| 32 | file(GLOB_RECURSE |
| 33 | tablegenned_files_on_include_dir |
| 34 | "${LLVM_MAIN_SRC_DIR}/include/llvm/*.gen") |
| 35 | file(GLOB_RECURSE |
| 36 | tablegenned_files_on_lib_dir |
| 37 | "${LLVM_MAIN_SRC_DIR}/lib/Target/*.inc") |
| 38 | if( tablegenned_files_on_include_dir OR tablegenned_files_on_lib_dir) |
| 39 | message(FATAL_ERROR "Apparently there is a previous in-source build, |
| 40 | probably as the result of running `configure' and `make' on |
| 41 | ${LLVM_MAIN_SRC_DIR}. |
| 42 | This may cause problems. The suspicious files are: |
| 43 | ${tablegenned_files_on_lib_dir} |
| 44 | ${tablegenned_files_on_include_dir} |
| 45 | Please clean the source directory.") |
| 46 | endif() |
| 47 | endif() |
| 48 | |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 49 | set(LLVM_ALL_TARGETS |
| 50 | Alpha |
| 51 | ARM |
| 52 | CBackend |
| 53 | CellSPU |
| 54 | CppBackend |
| 55 | IA64 |
| 56 | Mips |
| 57 | MSIL |
Richard Pennington | a51984b | 2009-07-09 20:27:09 +0000 | [diff] [blame] | 58 | MSP430 |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 59 | PIC16 |
| 60 | PowerPC |
| 61 | Sparc |
| 62 | X86 |
| 63 | XCore |
| 64 | ) |
| 65 | |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 66 | if( MSVC ) |
| 67 | set(LLVM_TARGETS_TO_BUILD X86 |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 68 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 69 | else( MSVC ) |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 70 | set(LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} |
| 71 | CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 72 | endif( MSVC ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 73 | |
Oscar Fuentes | 4b44283 | 2008-11-18 23:45:21 +0000 | [diff] [blame] | 74 | option(LLVM_ENABLE_THREADS "Use threads if available." ON) |
| 75 | |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 76 | if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 77 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF) |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 78 | else() |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 79 | option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON) |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 80 | endif() |
| 81 | |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 82 | if( LLVM_ENABLE_ASSERTIONS ) |
Oscar Fuentes | af10910 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 83 | # MSVC doesn't like _DEBUG on release builds. See PR 4379. |
Oscar Fuentes | e8c81ea | 2009-07-05 23:58:20 +0000 | [diff] [blame] | 84 | if( NOT MSVC ) |
Oscar Fuentes | af10910 | 2009-07-05 18:43:52 +0000 | [diff] [blame] | 85 | add_definitions( -D_DEBUG ) |
| 86 | endif() |
Oscar Fuentes | 76941b2 | 2009-06-04 09:26:16 +0000 | [diff] [blame] | 87 | # On Release builds cmake automatically defines NDEBUG, so we |
| 88 | # explicitly undefine it: |
| 89 | if( uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
| 90 | add_definitions( -UNDEBUG ) |
| 91 | endif() |
| 92 | else() |
| 93 | if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE" ) |
| 94 | add_definitions( -DNDEBUG ) |
| 95 | endif() |
Oscar Fuentes | 81a8755 | 2009-06-03 15:11:25 +0000 | [diff] [blame] | 96 | endif() |
| 97 | |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 98 | if( LLVM_TARGETS_TO_BUILD STREQUAL "all" ) |
| 99 | set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} ) |
| 100 | endif() |
| 101 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 102 | set(LLVM_ENUM_TARGETS "") |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 103 | foreach(c ${LLVM_TARGETS_TO_BUILD}) |
| 104 | list(FIND LLVM_ALL_TARGETS ${c} idx) |
| 105 | if( idx LESS 0 ) |
| 106 | message(FATAL_ERROR "The target `${c}' does not exists. |
| 107 | It should be one of\n${LLVM_ALL_TARGETS}") |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 108 | else() |
| 109 | set(LLVM_ENUM_TARGETS "${LLVM_ENUM_TARGETS}LLVM_TARGET(${c})\n") |
Oscar Fuentes | 4f21c13 | 2008-11-10 01:47:07 +0000 | [diff] [blame] | 110 | endif() |
| 111 | endforeach(c) |
| 112 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 113 | # Produce llvm/Config/Targets.def |
| 114 | configure_file( |
| 115 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/Targets.def.in |
| 116 | ${LLVM_BINARY_DIR}/include/llvm/Config/Targets.def |
| 117 | ) |
| 118 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 119 | set(llvm_builded_incs_dir ${LLVM_BINARY_DIR}/include/llvm) |
| 120 | |
| 121 | # Add path for custom modules |
| 122 | set(CMAKE_MODULE_PATH |
| 123 | ${CMAKE_MODULE_PATH} |
| 124 | "${LLVM_MAIN_SRC_DIR}/cmake" |
| 125 | "${LLVM_MAIN_SRC_DIR}/cmake/modules" |
| 126 | ) |
| 127 | |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 128 | include(AddLLVMDefinitions) |
| 129 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 130 | if(WIN32) |
Oscar Fuentes | 4fd38b8 | 2008-10-30 17:15:54 +0000 | [diff] [blame] | 131 | if(CYGWIN) |
| 132 | set(LLVM_ON_WIN32 0) |
| 133 | set(LLVM_ON_UNIX 1) |
| 134 | else(CYGWIN) |
| 135 | set(LLVM_ON_WIN32 1) |
| 136 | set(LLVM_ON_UNIX 0) |
| 137 | endif(CYGWIN) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 138 | set(LTDL_SHLIB_EXT ".dll") |
| 139 | set(EXEEXT ".exe") |
| 140 | # Maximum path length is 160 for non-unicode paths |
| 141 | set(MAXPATHLEN 160) |
| 142 | else(WIN32) |
| 143 | if(UNIX) |
| 144 | set(LLVM_ON_WIN32 0) |
| 145 | set(LLVM_ON_UNIX 1) |
| 146 | set(LTDL_SHLIB_EXT ".so") |
| 147 | set(EXEEXT "") |
| 148 | # FIXME: Maximum path length is currently set to 'safe' fixed value |
| 149 | set(MAXPATHLEN 2024) |
| 150 | else(UNIX) |
| 151 | MESSAGE(SEND_ERROR "Unable to determine platform") |
| 152 | endif(UNIX) |
| 153 | endif(WIN32) |
| 154 | |
| 155 | if( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config ) |
| 156 | set(HAVE_LLVM_CONFIG 1) |
| 157 | endif( EXISTS ${LLVM_TOOLS_BINARY_DIR}/llvm-config ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 158 | |
Oscar Fuentes | de98db3 | 2008-10-25 03:29:36 +0000 | [diff] [blame] | 159 | include(config-ix) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 160 | |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 161 | option(LLVM_ENABLE_PIC "Build Position-Independent Code" OFF) |
| 162 | |
Douglas Gregor | 318de60 | 2009-06-05 23:46:34 +0000 | [diff] [blame] | 163 | set(ENABLE_PIC 0) |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 164 | if( LLVM_ENABLE_PIC ) |
| 165 | if( SUPPORTS_FPIC_FLAG ) |
| 166 | message(STATUS "Building with -fPIC") |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 167 | add_llvm_definitions(-fPIC) |
Douglas Gregor | 318de60 | 2009-06-05 23:46:34 +0000 | [diff] [blame] | 168 | set(ENABLE_PIC 1) |
| 169 | else( SUPPORTS_FPIC_FLAG ) |
Oscar Fuentes | 64fb4c8 | 2008-11-20 19:13:51 +0000 | [diff] [blame] | 170 | message(STATUS "Warning: -fPIC not supported.") |
| 171 | endif() |
| 172 | endif() |
| 173 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 174 | set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR} ) |
| 175 | set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) |
| 176 | set( CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${LLVM_BINARY_DIR}/lib ) |
| 177 | |
| 178 | # set(CMAKE_VERBOSE_MAKEFILE true) |
| 179 | |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 180 | add_llvm_definitions( -D__STDC_LIMIT_MACROS ) |
| 181 | add_llvm_definitions( -D__STDC_CONSTANT_MACROS ) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 182 | |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 183 | if( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 184 | # TODO: support other platforms and toolchains. |
Oscar Fuentes | 6307b94 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 185 | option(LLVM_BUILD_32_BITS "Build 32 bits executables and libraries." OFF) |
| 186 | if( LLVM_BUILD_32_BITS ) |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 187 | message(STATUS "Building 32 bits executables and libraries.") |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 188 | add_llvm_definitions( -m32 ) |
Oscar Fuentes | 6307b94 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 189 | list(APPEND CMAKE_EXE_LINKER_FLAGS -m32) |
| 190 | list(APPEND CMAKE_SHARED_LINKER_FLAGS -m32) |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 191 | set( LLVM_PLO_FLAGS -melf_i386 ${LLVM_PLO_FLAGS} ) |
Oscar Fuentes | 6307b94 | 2008-11-19 00:10:39 +0000 | [diff] [blame] | 192 | endif( LLVM_BUILD_32_BITS ) |
Oscar Fuentes | b0c5699 | 2008-11-04 03:27:24 +0000 | [diff] [blame] | 193 | endif( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT WIN32 ) |
| 194 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 195 | if( MSVC ) |
Stefanus Du Toit | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 196 | # List of valid CRTs for MSVC |
| 197 | set(MSVC_CRT |
| 198 | MD |
| 199 | MDd) |
| 200 | |
| 201 | set(LLVM_USE_CRT "" CACHE STRING "Specify VC++ CRT to use for debug/release configurations.") |
Oscar Fuentes | 9a0107d | 2009-04-04 22:41:07 +0000 | [diff] [blame] | 202 | add_llvm_definitions( -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS ) |
| 203 | add_llvm_definitions( -D_SCL_SECURE_NO_WARNINGS -DCRT_NONSTDC_NO_WARNINGS ) |
| 204 | add_llvm_definitions( -D_SCL_SECURE_NO_DEPRECATE ) |
| 205 | add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 ) |
| 206 | add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 ) |
Stefanus Du Toit | 4ba3a0e | 2009-06-08 21:18:31 +0000 | [diff] [blame] | 207 | |
| 208 | if (NOT ${LLVM_USE_CRT} STREQUAL "") |
| 209 | list(FIND MSVC_CRT ${LLVM_USE_CRT} idx) |
| 210 | if (idx LESS 0) |
| 211 | message(FATAL_ERROR "Invalid value for LLVM_USE_CRT: ${LLVM_USE_CRT}. Valid options are one of: ${MSVC_CRT}") |
| 212 | endif (idx LESS 0) |
| 213 | add_llvm_definitions("/${LLVM_USE_CRT}") |
| 214 | message(STATUS "Using VC++ CRT: ${LLVM_USE_CRT}") |
| 215 | endif (NOT ${LLVM_USE_CRT} STREQUAL "") |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 216 | endif( MSVC ) |
| 217 | |
Oscar Fuentes | 980e842 | 2008-10-29 02:33:15 +0000 | [diff] [blame] | 218 | include_directories( ${LLVM_BINARY_DIR}/include ${LLVM_MAIN_INCLUDE_DIR}) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 219 | |
| 220 | include(AddLLVM) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 221 | include(TableGen) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 222 | |
| 223 | add_subdirectory(lib/Support) |
| 224 | add_subdirectory(lib/System) |
Oscar Fuentes | 1d8e4cf | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 225 | |
| 226 | # Everything else depends on Support and System: |
| 227 | set(LLVM_COMMON_DEPENDS ${LLVM_COMMON_DEPENDS} ${LLVM_LIBS} ) |
| 228 | |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 229 | set(LLVM_TABLEGEN "tblgen" CACHE |
Oscar Fuentes | 41bdedf | 2008-11-10 02:35:55 +0000 | [diff] [blame] | 230 | STRING "Native TableGen executable. Saves building one when cross-compiling.") |
Oscar Fuentes | 99b9489 | 2009-06-11 04:16:10 +0000 | [diff] [blame] | 231 | # Effective tblgen executable to be used: |
| 232 | set(LLVM_TABLEGEN_EXE ${LLVM_TABLEGEN}) |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 233 | |
Oscar Fuentes | 02516ba | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 234 | add_subdirectory(utils/TableGen) |
| 235 | |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 236 | if( CMAKE_CROSSCOMPILING ) |
Oscar Fuentes | 02516ba | 2008-11-10 01:32:14 +0000 | [diff] [blame] | 237 | # This adds a dependency on target `tblgen', so must go after utils/TableGen |
Oscar Fuentes | 3ab40ca | 2008-11-09 18:53:19 +0000 | [diff] [blame] | 238 | include( CrossCompileLLVM ) |
| 239 | endif( CMAKE_CROSSCOMPILING ) |
| 240 | |
Oscar Fuentes | 422fcf3 | 2008-11-15 00:24:38 +0000 | [diff] [blame] | 241 | add_subdirectory(include/llvm) |
Oscar Fuentes | 1d8e4cf | 2008-09-22 18:21:51 +0000 | [diff] [blame] | 242 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 243 | add_subdirectory(lib/VMCore) |
| 244 | add_subdirectory(lib/CodeGen) |
| 245 | add_subdirectory(lib/CodeGen/SelectionDAG) |
| 246 | add_subdirectory(lib/CodeGen/AsmPrinter) |
| 247 | add_subdirectory(lib/Bitcode/Reader) |
| 248 | add_subdirectory(lib/Bitcode/Writer) |
| 249 | add_subdirectory(lib/Transforms/Utils) |
| 250 | add_subdirectory(lib/Transforms/Instrumentation) |
| 251 | add_subdirectory(lib/Transforms/Scalar) |
| 252 | add_subdirectory(lib/Transforms/IPO) |
| 253 | add_subdirectory(lib/Transforms/Hello) |
| 254 | add_subdirectory(lib/Linker) |
| 255 | add_subdirectory(lib/Analysis) |
| 256 | add_subdirectory(lib/Analysis/IPA) |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 257 | add_subdirectory(lib/MC) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 258 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 259 | set(LLVM_ENUM_ASM_PRINTERS "") |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 260 | set(LLVM_ENUM_ASM_PARSERS "") |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 261 | foreach(t ${LLVM_TARGETS_TO_BUILD}) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 262 | message(STATUS "Targeting ${t}") |
| 263 | add_subdirectory(lib/Target/${t}) |
Daniel Dunbar | b5a8c08 | 2009-07-15 07:04:27 +0000 | [diff] [blame] | 264 | add_subdirectory(lib/Target/${t}/TargetInfo) |
Oscar Fuentes | cccecb8 | 2008-11-14 22:21:02 +0000 | [diff] [blame] | 265 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 266 | add_subdirectory(lib/Target/${t}/AsmPrinter) |
| 267 | set(LLVM_ENUM_ASM_PRINTERS |
| 268 | "${LLVM_ENUM_ASM_PRINTERS}LLVM_ASM_PRINTER(${t})\n") |
| 269 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmPrinter/CMakeLists.txt ) |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 270 | if( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
| 271 | add_subdirectory(lib/Target/${t}/AsmParser) |
| 272 | set(LLVM_ENUM_ASM_PARSERS |
| 273 | "${LLVM_ENUM_ASM_PARSERS}LLVM_ASM_PARSER(${t})\n") |
| 274 | endif( EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Target/${t}/AsmParser/CMakeLists.txt ) |
Oscar Fuentes | e1ad087 | 2008-09-26 04:40:32 +0000 | [diff] [blame] | 275 | endforeach(t) |
| 276 | |
Douglas Gregor | 1555a23 | 2009-06-16 20:12:29 +0000 | [diff] [blame] | 277 | # Produce llvm/Config/AsmPrinters.def |
| 278 | configure_file( |
| 279 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmPrinters.def.in |
| 280 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmPrinters.def |
| 281 | ) |
| 282 | |
Daniel Dunbar | 092a9dd | 2009-07-17 20:42:00 +0000 | [diff] [blame] | 283 | # Produce llvm/Config/AsmParsers.def |
| 284 | configure_file( |
| 285 | ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/AsmParsers.def.in |
| 286 | ${LLVM_BINARY_DIR}/include/llvm/Config/AsmParsers.def |
| 287 | ) |
| 288 | |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 289 | add_subdirectory(lib/ExecutionEngine) |
| 290 | add_subdirectory(lib/ExecutionEngine/Interpreter) |
| 291 | add_subdirectory(lib/ExecutionEngine/JIT) |
| 292 | add_subdirectory(lib/Target) |
| 293 | add_subdirectory(lib/AsmParser) |
| 294 | add_subdirectory(lib/Debugger) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 295 | add_subdirectory(lib/Archive) |
| 296 | |
Oscar Fuentes | 5c6bf65 | 2009-03-06 01:16:52 +0000 | [diff] [blame] | 297 | add_subdirectory(projects) |
Oscar Fuentes | 3d01fc7 | 2008-09-22 01:08:49 +0000 | [diff] [blame] | 298 | add_subdirectory(tools) |
| 299 | |
Douglas Gregor | 5dd4272 | 2009-06-16 22:25:45 +0000 | [diff] [blame] | 300 | option(LLVM_EXAMPLES "Build LLVM example programs." OFF) |
| 301 | if (LLVM_EXAMPLES) |
| 302 | add_subdirectory(examples) |
| 303 | endif () |
Oscar Fuentes | 1dc9716 | 2008-10-22 02:56:07 +0000 | [diff] [blame] | 304 | |
| 305 | install(DIRECTORY include |
| 306 | DESTINATION . |
| 307 | PATTERN ".svn" EXCLUDE |
| 308 | PATTERN "*.cmake" EXCLUDE |
| 309 | PATTERN "*.in" EXCLUDE |
| 310 | ) |
| 311 | |
| 312 | install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include |
| 313 | DESTINATION . |
| 314 | ) |
| 315 | |
| 316 | # TODO: make and install documentation. |