blob: 150daf4e1e9fcdf4a052f19b4ace18d613771cbf [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
Douglas Gregor34d9ffa2009-09-16 21:59:05 +000011# Compute the Clang version from the contents of VER
12file(READ ${CMAKE_CURRENT_SOURCE_DIR}/VER CLANG_VERSION_DATA)
13string(REGEX MATCH "[0-9]+\\.[0-9]+(\\.[0-9]+)?" CLANG_VERSION
14 ${CLANG_VERSION_DATA})
15message(STATUS "Clang version: ${CLANG_VERSION}")
Douglas Gregor7f7b7482009-08-23 05:28:29 +000016
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000017macro(add_clang_library name)
Cedric Venetfe2f8082008-11-02 16:28:53 +000018 set(srcs ${ARGN})
Ted Kremenekbf5de3f2009-03-25 20:34:07 +000019 if(MSVC_IDE OR XCODE)
Douglas Gregorf5216f22009-06-17 18:31:02 +000020 file( GLOB_RECURSE headers *.h *.td *.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000021 set(srcs ${srcs} ${headers})
22 string( REGEX MATCHALL "/[^/]+" split_path ${CMAKE_CURRENT_SOURCE_DIR})
23 list( GET split_path -1 dir)
Douglas Gregorf5216f22009-06-17 18:31:02 +000024 file( GLOB_RECURSE headers
25 ../../include/clang${dir}/*.h
26 ../../include/clang${dir}/*.td
27 ../../include/clang${dir}/*.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000028 set(srcs ${srcs} ${headers})
Ted Kremenekbf5de3f2009-03-25 20:34:07 +000029 endif(MSVC_IDE OR XCODE)
Cedric Venetfe2f8082008-11-02 16:28:53 +000030 add_library( ${name} ${srcs} )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000031 if( LLVM_COMMON_DEPENDS )
32 add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
33 endif( LLVM_COMMON_DEPENDS )
Douglas Gregora393e9e2009-03-16 23:06:59 +000034 add_dependencies(${name} ClangDiagnosticCommon)
Cedric Venet1c212a02008-12-13 11:00:04 +000035 if(MSVC)
36 get_target_property(cflag ${name} COMPILE_FLAGS)
37 if(NOT cflag)
38 set(cflag "")
39 endif(NOT cflag)
40 set(cflag "${cflag} /Za")
41 set_target_properties(${name} PROPERTIES COMPILE_FLAGS ${cflag})
42 endif(MSVC)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000043 install(TARGETS ${name}
44 LIBRARY DESTINATION lib
Oscar Fuentes755f3df2009-06-12 02:54:12 +000045 ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000046endmacro(add_clang_library)
47
48macro(add_clang_executable name)
Cedric Venetfe2f8082008-11-02 16:28:53 +000049 set(srcs ${ARGN})
50 if(MSVC_IDE)
Douglas Gregorf5216f22009-06-17 18:31:02 +000051 file( GLOB_RECURSE headers *.h *.td *.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000052 set(srcs ${srcs} ${headers})
53 endif(MSVC_IDE)
54 add_llvm_executable( ${name} ${srcs} )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000055endmacro(add_clang_executable)
56
57include_directories(
58 ${CMAKE_CURRENT_SOURCE_DIR}/include
Douglas Gregora393e9e2009-03-16 23:06:59 +000059 ${CMAKE_CURRENT_BINARY_DIR}/include
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000060 )
61
Chris Lattnerbc6ec752008-11-11 18:39:10 +000062install(DIRECTORY include
63 DESTINATION .
64 PATTERN ".svn" EXCLUDE
65 )
66
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000067add_definitions( -D_GNU_SOURCE )
68
Douglas Gregora393e9e2009-03-16 23:06:59 +000069add_subdirectory(include)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000070add_subdirectory(lib)
Daniel Dunbarcbcd98b2009-03-24 02:52:57 +000071add_subdirectory(tools)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000072
73# TODO: docs.
Douglas Gregor291fbde2009-09-15 22:30:13 +000074add_subdirectory(test)
75