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 | |
| 3 | # Make sure that CMake reconfigures when the version changes. |
| 4 | configure_file( |
| 5 | ${CMAKE_CURRENT_SOURCE_DIR}/VER |
| 6 | ${CMAKE_CURRENT_BINARY_DIR}/VER) |
| 7 | |
Daniel Dunbar | 91ee77a | 2009-09-17 00:07:10 +0000 | [diff] [blame] | 8 | set(CLANG_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}) |
| 9 | set(CLANG_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) |
| 10 | |
Douglas Gregor | 34d9ffa | 2009-09-16 21:59:05 +0000 | [diff] [blame] | 11 | # Compute the Clang version from the contents of VER |
| 12 | file(READ ${CMAKE_CURRENT_SOURCE_DIR}/VER CLANG_VERSION_DATA) |
| 13 | string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION |
| 14 | ${CLANG_VERSION_DATA}) |
| 15 | message(STATUS "Clang version: ${CLANG_VERSION}") |
Douglas Gregor | 7f7b748 | 2009-08-23 05:28:29 +0000 | [diff] [blame] | 16 | |
Douglas Gregor | 9df3faf | 2009-09-18 14:47:57 +0000 | [diff] [blame] | 17 | # Add appropriate flags for GCC |
| 18 | if (CMAKE_COMPILER_IS_GNUCXX) |
| 19 | # FIXME: Turn off exceptions, RTTI: |
| 20 | # -fno-exceptions -fno-rtti |
| 21 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings") |
| 22 | endif () |
| 23 | |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 24 | macro(add_clang_library name) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 25 | set(srcs ${ARGN}) |
Ted Kremenek | bf5de3f | 2009-03-25 20:34:07 +0000 | [diff] [blame] | 26 | if(MSVC_IDE OR XCODE) |
Douglas Gregor | f5216f2 | 2009-06-17 18:31:02 +0000 | [diff] [blame] | 27 | file( GLOB_RECURSE headers *.h *.td *.def) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 28 | set(srcs ${srcs} ${headers}) |
| 29 | string( REGEX MATCHALL "/[^/]+" split_path ${CMAKE_CURRENT_SOURCE_DIR}) |
| 30 | list( GET split_path -1 dir) |
Douglas Gregor | f5216f2 | 2009-06-17 18:31:02 +0000 | [diff] [blame] | 31 | file( GLOB_RECURSE headers |
| 32 | ../../include/clang${dir}/*.h |
| 33 | ../../include/clang${dir}/*.td |
| 34 | ../../include/clang${dir}/*.def) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 35 | set(srcs ${srcs} ${headers}) |
Ted Kremenek | bf5de3f | 2009-03-25 20:34:07 +0000 | [diff] [blame] | 36 | endif(MSVC_IDE OR XCODE) |
Douglas Gregor | ac47bc7 | 2009-09-25 06:35:15 +0000 | [diff] [blame] | 37 | if (SHARED_LIBRARY) |
| 38 | set(libkind SHARED) |
| 39 | else() |
| 40 | set(libkind) |
| 41 | endif() |
| 42 | add_library( ${name} ${libkind} ${srcs} ) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 43 | if( LLVM_COMMON_DEPENDS ) |
| 44 | add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} ) |
| 45 | endif( LLVM_COMMON_DEPENDS ) |
Douglas Gregor | ac47bc7 | 2009-09-25 06:35:15 +0000 | [diff] [blame] | 46 | if( LLVM_USED_LIBS ) |
| 47 | foreach(lib ${LLVM_USED_LIBS}) |
| 48 | target_link_libraries( ${name} ${lib} ) |
| 49 | endforeach(lib) |
| 50 | endif( LLVM_USED_LIBS ) |
Benjamin Kramer | bd78554 | 2009-10-11 12:22:00 +0000 | [diff] [blame] | 51 | if( LLVM_LINK_COMPONENTS ) |
| 52 | llvm_config(${name} ${LLVM_LINK_COMPONENTS}) |
| 53 | endif( LLVM_LINK_COMPONENTS ) |
| 54 | get_system_libs(llvm_system_libs) |
| 55 | if( llvm_system_libs ) |
| 56 | target_link_libraries(${name} ${llvm_system_libs}) |
| 57 | endif( llvm_system_libs ) |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 58 | add_dependencies(${name} ClangDiagnosticCommon) |
Cedric Venet | 1c212a0 | 2008-12-13 11:00:04 +0000 | [diff] [blame] | 59 | if(MSVC) |
| 60 | get_target_property(cflag ${name} COMPILE_FLAGS) |
| 61 | if(NOT cflag) |
| 62 | set(cflag "") |
| 63 | endif(NOT cflag) |
| 64 | set(cflag "${cflag} /Za") |
| 65 | set_target_properties(${name} PROPERTIES COMPILE_FLAGS ${cflag}) |
| 66 | endif(MSVC) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 67 | install(TARGETS ${name} |
Oscar Fuentes | bfb06ea | 2009-10-27 19:42:21 +0000 | [diff] [blame] | 68 | LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX} |
Oscar Fuentes | 755f3df | 2009-06-12 02:54:12 +0000 | [diff] [blame] | 69 | ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX}) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 70 | endmacro(add_clang_library) |
| 71 | |
| 72 | macro(add_clang_executable name) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 73 | set(srcs ${ARGN}) |
| 74 | if(MSVC_IDE) |
Douglas Gregor | f5216f2 | 2009-06-17 18:31:02 +0000 | [diff] [blame] | 75 | file( GLOB_RECURSE headers *.h *.td *.def) |
Cedric Venet | fe2f808 | 2008-11-02 16:28:53 +0000 | [diff] [blame] | 76 | set(srcs ${srcs} ${headers}) |
| 77 | endif(MSVC_IDE) |
| 78 | add_llvm_executable( ${name} ${srcs} ) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 79 | endmacro(add_clang_executable) |
| 80 | |
| 81 | include_directories( |
| 82 | ${CMAKE_CURRENT_SOURCE_DIR}/include |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 83 | ${CMAKE_CURRENT_BINARY_DIR}/include |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 84 | ) |
| 85 | |
Oscar Fuentes | 82cac29 | 2009-10-27 19:59:34 +0000 | [diff] [blame] | 86 | install(DIRECTORY include/ |
| 87 | DESTINATION include |
| 88 | FILES_MATCHING |
| 89 | PATTERN "*.def" |
| 90 | PATTERN "*.h" |
| 91 | PATTERN "*.td" |
Chris Lattner | bc6ec75 | 2008-11-11 18:39:10 +0000 | [diff] [blame] | 92 | PATTERN ".svn" EXCLUDE |
| 93 | ) |
| 94 | |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 95 | add_definitions( -D_GNU_SOURCE ) |
| 96 | |
Douglas Gregor | a393e9e | 2009-03-16 23:06:59 +0000 | [diff] [blame] | 97 | add_subdirectory(include) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 98 | add_subdirectory(lib) |
Daniel Dunbar | cbcd98b | 2009-03-24 02:52:57 +0000 | [diff] [blame] | 99 | add_subdirectory(tools) |
Oscar Fuentes | d2f4e5e | 2008-10-26 00:56:18 +0000 | [diff] [blame] | 100 | |
| 101 | # TODO: docs. |
Douglas Gregor | 291fbde | 2009-09-15 22:30:13 +0000 | [diff] [blame] | 102 | add_subdirectory(test) |
| 103 | |