Douglas Gregor | 7f7b748 | 2009-08-23 05:28:29 +0000 | [diff] [blame] | 1 | # Clang version information |
Douglas Gregor | 34d9ffa | 2009-09-16 21:59:05 +0000 | [diff] [blame] | 2 | |
Daniel Dunbar | 91ee77a | 2009-09-17 00:07:10 +0000 | [diff] [blame] | 3 | set(CLANG_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
| 4 | set(CLANG_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) |
| 5 | |
Chandler Carruth | 63e9c0d | 2010-04-17 20:12:02 +0000 | [diff] [blame] | 6 | if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) |
| 7 | message(FATAL_ERROR "In-source builds are not allowed. CMake would overwrite " |
| 8 | "the makefiles distributed with LLVM. Please create a directory and run cmake " |
| 9 | "from there, passing the path to this source directory as the last argument. " |
| 10 | "This process created the file `CMakeCache.txt' and the directory " |
| 11 | "`CMakeFiles'. Please delete them.") |
| 12 | endif() |
| 13 | |
| 14 | if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR ) |
| 15 | file(GLOB_RECURSE |
| 16 | tablegenned_files_on_include_dir |
| 17 | "${CLANG_SOURCE_DIR}/include/clang/*.inc") |
| 18 | if( tablegenned_files_on_include_dir ) |
| 19 | message(FATAL_ERROR "Apparently there is a previous in-source build, " |
| 20 | "probably as the result of running `configure' and `make' on " |
| 21 | "${CLANG_SOURCE_DIR}. This may cause problems. The suspicious files are:\n" |
| 22 | "${tablegenned_files_on_include_dir}\nPlease clean the source directory.") |
| 23 | endif() |
| 24 | endif() |
| 25 | |
Daniel Dunbar | c4b8e92 | 2010-06-25 23:34:47 +0000 | [diff] [blame] | 26 | # Compute the Clang version from the LLVM version. |
Michael J. Spencer | 5a7f349 | 2010-09-10 21:13:16 +0000 | [diff] [blame] | 27 | string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION |
Daniel Dunbar | c4b8e92 | 2010-06-25 23:34:47 +0000 | [diff] [blame] | 28 | ${PACKAGE_VERSION}) |
Douglas Gregor | 34d9ffa | 2009-09-16 21:59:05 +0000 | [diff] [blame] | 29 | message(STATUS "Clang version: ${CLANG_VERSION}") |
Douglas Gregor | 7f7b748 | 2009-08-23 05:28:29 +0000 | [diff] [blame] | 30 | |
Daniel Dunbar | a510767 | 2010-06-25 17:33:46 +0000 | [diff] [blame] | 31 | string(REGEX REPLACE "([0-9]+)\\.[0-9]+(\\.[0-9]+)?" "\\1" CLANG_VERSION_MAJOR |
| 32 | ${CLANG_VERSION}) |
| 33 | string(REGEX REPLACE "[0-9]+\\.([0-9]+)(\\.[0-9]+)?" "\\1" CLANG_VERSION_MINOR |
| 34 | ${CLANG_VERSION}) |
| 35 | if (${CLANG_VERSION} MATCHES "[0-9]+\\.[0-9]+\\.[0-9]+") |
| 36 | set(CLANG_HAS_VERSION_PATCHLEVEL 1) |
| 37 | string(REGEX REPLACE "[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" CLANG_VERSION_PATCHLEVEL |
| 38 | ${CLANG_VERSION}) |
| 39 | else() |
| 40 | set(CLANG_HAS_VERSION_PATCHLEVEL 0) |
| 41 | endif() |
| 42 | |
| 43 | # Configure the Version.inc file. |
| 44 | configure_file( |
| 45 | ${CMAKE_CURRENT_SOURCE_DIR}/include/clang/Basic/Version.inc.in |
| 46 | ${CMAKE_CURRENT_BINARY_DIR}/include/clang/Basic/Version.inc) |
| 47 | |
Douglas Gregor | 9df3faf | 2009-09-18 14:47:57 +0000 | [diff] [blame] | 48 | # Add appropriate flags for GCC |
| 49 | if (CMAKE_COMPILER_IS_GNUCXX) |
| 50 | # FIXME: Turn off exceptions, RTTI: |
| 51 | # -fno-exceptions -fno-rtti |
| 52 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings") |
| 53 | endif () |
| 54 | |
Douglas Gregor | eb5dc49 | 2010-06-08 19:23:49 +0000 | [diff] [blame] | 55 | if (APPLE) |
| 56 | set(CMAKE_MODULE_LINKER_FLAGS "-Wl,-flat_namespace -Wl,-undefined -Wl,suppress") |
| 57 | endif () |
| 58 | |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 59 | macro(add_clang_library name) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 60 | set(srcs ${ARGN}) |
Ted Kremenek | bf5de3f | 2009-03-25 20:34:07 +0000 | [diff] [blame] | 61 | if(MSVC_IDE OR XCODE) |
Douglas Gregor | f5216f2 | 2009-06-17 18:31:02 +0000 | [diff] [blame] | 62 | file( GLOB_RECURSE headers *.h *.td *.def) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 63 | set(srcs ${srcs} ${headers}) |
| 64 | string( REGEX MATCHALL "/[^/]+" split_path ${CMAKE_CURRENT_SOURCE_DIR}) |
| 65 | list( GET split_path -1 dir) |
Michael J. Spencer | 5a7f349 | 2010-09-10 21:13:16 +0000 | [diff] [blame] | 66 | file( GLOB_RECURSE headers |
Douglas Gregor | f5216f2 | 2009-06-17 18:31:02 +0000 | [diff] [blame] | 67 | ../../include/clang${dir}/*.h |
| 68 | ../../include/clang${dir}/*.td |
| 69 | ../../include/clang${dir}/*.def) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 70 | set(srcs ${srcs} ${headers}) |
Ted Kremenek | bf5de3f | 2009-03-25 20:34:07 +0000 | [diff] [blame] | 71 | endif(MSVC_IDE OR XCODE) |
Douglas Gregor | eb5dc49 | 2010-06-08 19:23:49 +0000 | [diff] [blame] | 72 | if (MODULE) |
| 73 | set(libkind MODULE) |
| 74 | elseif (SHARED_LIBRARY) |
Douglas Gregor | ac47bc7 | 2009-09-25 06:35:15 +0000 | [diff] [blame] | 75 | set(libkind SHARED) |
| 76 | else() |
| 77 | set(libkind) |
| 78 | endif() |
| 79 | add_library( ${name} ${libkind} ${srcs} ) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 80 | if( LLVM_COMMON_DEPENDS ) |
| 81 | add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} ) |
| 82 | endif( LLVM_COMMON_DEPENDS ) |
Douglas Gregor | ac47bc7 | 2009-09-25 06:35:15 +0000 | [diff] [blame] | 83 | if( LLVM_USED_LIBS ) |
| 84 | foreach(lib ${LLVM_USED_LIBS}) |
| 85 | target_link_libraries( ${name} ${lib} ) |
| 86 | endforeach(lib) |
| 87 | endif( LLVM_USED_LIBS ) |
Benjamin Kramer | bd78554 | 2009-10-11 12:22:00 +0000 | [diff] [blame] | 88 | if( LLVM_LINK_COMPONENTS ) |
| 89 | llvm_config(${name} ${LLVM_LINK_COMPONENTS}) |
| 90 | endif( LLVM_LINK_COMPONENTS ) |
Michael J. Spencer | 5a7f349 | 2010-09-10 21:13:16 +0000 | [diff] [blame] | 91 | if (LLVM_COMMON_LIBS) |
| 92 | target_link_libraries(${name} ${LLVM_COMMON_LIBS}) |
| 93 | endif() |
Michael J. Spencer | 28709c1 | 2010-09-11 02:13:48 +0000 | [diff] [blame] | 94 | if( NOT MINGW ) |
| 95 | get_system_libs(llvm_system_libs) |
| 96 | if( llvm_system_libs ) |
| 97 | target_link_libraries(${name} ${llvm_system_libs}) |
| 98 | endif() |
| 99 | endif() |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 100 | add_dependencies(${name} ClangDiagnosticCommon) |
Cedric Venet | 1c212a0 | 2008-12-13 11:00:04 +0000 | [diff] [blame] | 101 | if(MSVC) |
| 102 | get_target_property(cflag ${name} COMPILE_FLAGS) |
| 103 | if(NOT cflag) |
| 104 | set(cflag "") |
| 105 | endif(NOT cflag) |
| 106 | set(cflag "${cflag} /Za") |
| 107 | set_target_properties(${name} PROPERTIES COMPILE_FLAGS ${cflag}) |
| 108 | endif(MSVC) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 109 | install(TARGETS ${name} |
Oscar Fuentes | bfb06ea | 2009-10-27 19:42:21 +0000 | [diff] [blame] | 110 | LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX} |
Oscar Fuentes | 755f3df | 2009-06-12 02:54:12 +0000 | [diff] [blame] | 111 | ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 112 | endmacro(add_clang_library) |
| 113 | |
| 114 | macro(add_clang_executable name) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 115 | set(srcs ${ARGN}) |
| 116 | if(MSVC_IDE) |
Douglas Gregor | f5216f2 | 2009-06-17 18:31:02 +0000 | [diff] [blame] | 117 | file( GLOB_RECURSE headers *.h *.td *.def) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 118 | set(srcs ${srcs} ${headers}) |
| 119 | endif(MSVC_IDE) |
| 120 | add_llvm_executable( ${name} ${srcs} ) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 121 | endmacro(add_clang_executable) |
| 122 | |
| 123 | include_directories( |
| 124 | ${CMAKE_CURRENT_SOURCE_DIR}/include |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 125 | ${CMAKE_CURRENT_BINARY_DIR}/include |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 126 | ) |
| 127 | |
Oscar Fuentes | 82cac29 | 2009-10-27 19:59:34 +0000 | [diff] [blame] | 128 | install(DIRECTORY include/ |
| 129 | DESTINATION include |
| 130 | FILES_MATCHING |
| 131 | PATTERN "*.def" |
| 132 | PATTERN "*.h" |
| 133 | PATTERN "*.td" |
Chris Lattner | bc6ec75 | 2008-11-11 18:39:10 +0000 | [diff] [blame] | 134 | PATTERN ".svn" EXCLUDE |
| 135 | ) |
| 136 | |
Kovarththanan Rajaratnam | ec700a6 | 2010-04-01 14:24:41 +0000 | [diff] [blame] | 137 | install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/ |
| 138 | DESTINATION include |
| 139 | FILES_MATCHING |
Chris Lattner | d7d5bb1 | 2010-04-25 04:59:35 +0000 | [diff] [blame] | 140 | PATTERN "CMakeFiles" EXCLUDE |
Kovarththanan Rajaratnam | ec700a6 | 2010-04-01 14:24:41 +0000 | [diff] [blame] | 141 | PATTERN "*.inc" |
| 142 | ) |
| 143 | |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 144 | add_definitions( -D_GNU_SOURCE ) |
| 145 | |
Daniel Dunbar | 45088e2 | 2009-11-17 09:32:51 +0000 | [diff] [blame] | 146 | option(CLANG_BUILD_EXAMPLES "Build CLANG example programs." OFF) |
| 147 | if(CLANG_BUILD_EXAMPLES) |
| 148 | add_subdirectory(examples) |
| 149 | endif () |
| 150 | |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 151 | add_subdirectory(include) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 152 | add_subdirectory(lib) |
Daniel Dunbar | cbcd98b | 2009-03-24 02:52:57 +0000 | [diff] [blame] | 153 | add_subdirectory(tools) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 154 | |
| 155 | # TODO: docs. |
Douglas Gregor | 291fbde | 2009-09-15 22:30:13 +0000 | [diff] [blame] | 156 | add_subdirectory(test) |
| 157 | |