blob: e91fb43f34822c36cbce62acf2bcf7fdf6c2f1b6 [file] [log] [blame]
Douglas Gregor7f7b7482009-08-23 05:28:29 +00001# Clang version information
Douglas Gregor34d9ffa2009-09-16 21:59:05 +00002
3# Make sure that CMake reconfigures when the version changes.
4configure_file(
5 ${CMAKE_CURRENT_SOURCE_DIR}/VER
6 ${CMAKE_CURRENT_BINARY_DIR}/VER)
7
Daniel Dunbar91ee77a2009-09-17 00:07:10 +00008set(CLANG_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
9set(CLANG_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
10
Chandler Carruth63e9c0d2010-04-17 20:12:02 +000011if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
12 message(FATAL_ERROR "In-source builds are not allowed. CMake would overwrite "
13"the makefiles distributed with LLVM. Please create a directory and run cmake "
14"from there, passing the path to this source directory as the last argument. "
15"This process created the file `CMakeCache.txt' and the directory "
16"`CMakeFiles'. Please delete them.")
17endif()
18
19if( NOT CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR )
20 file(GLOB_RECURSE
21 tablegenned_files_on_include_dir
22 "${CLANG_SOURCE_DIR}/include/clang/*.inc")
23 if( tablegenned_files_on_include_dir )
24 message(FATAL_ERROR "Apparently there is a previous in-source build, "
25"probably as the result of running `configure' and `make' on "
26"${CLANG_SOURCE_DIR}. This may cause problems. The suspicious files are:\n"
27"${tablegenned_files_on_include_dir}\nPlease clean the source directory.")
28 endif()
29endif()
30
Douglas Gregor34d9ffa2009-09-16 21:59:05 +000031# Compute the Clang version from the contents of VER
32file(READ ${CMAKE_CURRENT_SOURCE_DIR}/VER CLANG_VERSION_DATA)
33string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION
34 ${CLANG_VERSION_DATA})
35message(STATUS "Clang version: ${CLANG_VERSION}")
Douglas Gregor7f7b7482009-08-23 05:28:29 +000036
Douglas Gregor9df3faf2009-09-18 14:47:57 +000037# Add appropriate flags for GCC
38if (CMAKE_COMPILER_IS_GNUCXX)
39 # FIXME: Turn off exceptions, RTTI:
40 # -fno-exceptions -fno-rtti
41 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings")
42endif ()
43
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000044macro(add_clang_library name)
Cedric Venetfe2f8082008-11-02 16:28:53 +000045 set(srcs ${ARGN})
Ted Kremenekbf5de3f2009-03-25 20:34:07 +000046 if(MSVC_IDE OR XCODE)
Douglas Gregorf5216f22009-06-17 18:31:02 +000047 file( GLOB_RECURSE headers *.h *.td *.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000048 set(srcs ${srcs} ${headers})
49 string( REGEX MATCHALL "/[^/]+" split_path ${CMAKE_CURRENT_SOURCE_DIR})
50 list( GET split_path -1 dir)
Douglas Gregorf5216f22009-06-17 18:31:02 +000051 file( GLOB_RECURSE headers
52 ../../include/clang${dir}/*.h
53 ../../include/clang${dir}/*.td
54 ../../include/clang${dir}/*.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000055 set(srcs ${srcs} ${headers})
Ted Kremenekbf5de3f2009-03-25 20:34:07 +000056 endif(MSVC_IDE OR XCODE)
Douglas Gregorac47bc72009-09-25 06:35:15 +000057 if (SHARED_LIBRARY)
58 set(libkind SHARED)
59 else()
60 set(libkind)
61 endif()
62 add_library( ${name} ${libkind} ${srcs} )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000063 if( LLVM_COMMON_DEPENDS )
64 add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
65 endif( LLVM_COMMON_DEPENDS )
Douglas Gregorac47bc72009-09-25 06:35:15 +000066 if( LLVM_USED_LIBS )
67 foreach(lib ${LLVM_USED_LIBS})
68 target_link_libraries( ${name} ${lib} )
69 endforeach(lib)
70 endif( LLVM_USED_LIBS )
Benjamin Kramerbd785542009-10-11 12:22:00 +000071 if( LLVM_LINK_COMPONENTS )
72 llvm_config(${name} ${LLVM_LINK_COMPONENTS})
73 endif( LLVM_LINK_COMPONENTS )
74 get_system_libs(llvm_system_libs)
75 if( llvm_system_libs )
76 target_link_libraries(${name} ${llvm_system_libs})
77 endif( llvm_system_libs )
Douglas Gregora393e9e2009-03-16 23:06:59 +000078 add_dependencies(${name} ClangDiagnosticCommon)
Cedric Venet1c212a02008-12-13 11:00:04 +000079 if(MSVC)
80 get_target_property(cflag ${name} COMPILE_FLAGS)
81 if(NOT cflag)
82 set(cflag "")
83 endif(NOT cflag)
84 set(cflag "${cflag} /Za")
85 set_target_properties(${name} PROPERTIES COMPILE_FLAGS ${cflag})
86 endif(MSVC)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000087 install(TARGETS ${name}
Oscar Fuentesbfb06ea2009-10-27 19:42:21 +000088 LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
Oscar Fuentes755f3df2009-06-12 02:54:12 +000089 ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000090endmacro(add_clang_library)
91
92macro(add_clang_executable name)
Cedric Venetfe2f8082008-11-02 16:28:53 +000093 set(srcs ${ARGN})
94 if(MSVC_IDE)
Douglas Gregorf5216f22009-06-17 18:31:02 +000095 file( GLOB_RECURSE headers *.h *.td *.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000096 set(srcs ${srcs} ${headers})
97 endif(MSVC_IDE)
98 add_llvm_executable( ${name} ${srcs} )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000099endmacro(add_clang_executable)
100
101include_directories(
102 ${CMAKE_CURRENT_SOURCE_DIR}/include
Douglas Gregora393e9e2009-03-16 23:06:59 +0000103 ${CMAKE_CURRENT_BINARY_DIR}/include
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000104 )
105
Oscar Fuentes82cac292009-10-27 19:59:34 +0000106install(DIRECTORY include/
107 DESTINATION include
108 FILES_MATCHING
109 PATTERN "*.def"
110 PATTERN "*.h"
111 PATTERN "*.td"
Chris Lattnerbc6ec752008-11-11 18:39:10 +0000112 PATTERN ".svn" EXCLUDE
113 )
114
Kovarththanan Rajaratnamec700a62010-04-01 14:24:41 +0000115install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
116 DESTINATION include
117 FILES_MATCHING
118 PATTERN "*.inc"
119 )
120
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000121add_definitions( -D_GNU_SOURCE )
122
Daniel Dunbar45088e22009-11-17 09:32:51 +0000123option(CLANG_BUILD_EXAMPLES "Build CLANG example programs." OFF)
124if(CLANG_BUILD_EXAMPLES)
125 add_subdirectory(examples)
126endif ()
127
Douglas Gregora393e9e2009-03-16 23:06:59 +0000128add_subdirectory(include)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000129add_subdirectory(lib)
Daniel Dunbarcbcd98b2009-03-24 02:52:57 +0000130add_subdirectory(tools)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000131
132# TODO: docs.
Douglas Gregor291fbde2009-09-15 22:30:13 +0000133add_subdirectory(test)
134