blob: 9e84d94a3b6429181b7dba92b6dd38d88f22be59 [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
Douglas Gregor9df3faf2009-09-18 14:47:57 +000017# Add appropriate flags for GCC
18if (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")
22endif ()
23
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000024macro(add_clang_library name)
Cedric Venetfe2f8082008-11-02 16:28:53 +000025 set(srcs ${ARGN})
Ted Kremenekbf5de3f2009-03-25 20:34:07 +000026 if(MSVC_IDE OR XCODE)
Douglas Gregorf5216f22009-06-17 18:31:02 +000027 file( GLOB_RECURSE headers *.h *.td *.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000028 set(srcs ${srcs} ${headers})
29 string( REGEX MATCHALL "/[^/]+" split_path ${CMAKE_CURRENT_SOURCE_DIR})
30 list( GET split_path -1 dir)
Douglas Gregorf5216f22009-06-17 18:31:02 +000031 file( GLOB_RECURSE headers
32 ../../include/clang${dir}/*.h
33 ../../include/clang${dir}/*.td
34 ../../include/clang${dir}/*.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000035 set(srcs ${srcs} ${headers})
Ted Kremenekbf5de3f2009-03-25 20:34:07 +000036 endif(MSVC_IDE OR XCODE)
Douglas Gregorac47bc72009-09-25 06:35:15 +000037 if (SHARED_LIBRARY)
38 set(libkind SHARED)
39 else()
40 set(libkind)
41 endif()
42 add_library( ${name} ${libkind} ${srcs} )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000043 if( LLVM_COMMON_DEPENDS )
44 add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
45 endif( LLVM_COMMON_DEPENDS )
Douglas Gregorac47bc72009-09-25 06:35:15 +000046 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 Kramerbd785542009-10-11 12:22:00 +000051 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 Gregora393e9e2009-03-16 23:06:59 +000058 add_dependencies(${name} ClangDiagnosticCommon)
Cedric Venet1c212a02008-12-13 11:00:04 +000059 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 Fuentesd2f4e5e2008-10-26 00:56:18 +000067 install(TARGETS ${name}
Oscar Fuentesbfb06ea2009-10-27 19:42:21 +000068 LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
Oscar Fuentes755f3df2009-06-12 02:54:12 +000069 ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000070endmacro(add_clang_library)
71
72macro(add_clang_executable name)
Cedric Venetfe2f8082008-11-02 16:28:53 +000073 set(srcs ${ARGN})
74 if(MSVC_IDE)
Douglas Gregorf5216f22009-06-17 18:31:02 +000075 file( GLOB_RECURSE headers *.h *.td *.def)
Cedric Venetfe2f8082008-11-02 16:28:53 +000076 set(srcs ${srcs} ${headers})
77 endif(MSVC_IDE)
78 add_llvm_executable( ${name} ${srcs} )
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000079endmacro(add_clang_executable)
80
81include_directories(
82 ${CMAKE_CURRENT_SOURCE_DIR}/include
Douglas Gregora393e9e2009-03-16 23:06:59 +000083 ${CMAKE_CURRENT_BINARY_DIR}/include
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000084 )
85
Oscar Fuentes82cac292009-10-27 19:59:34 +000086install(DIRECTORY include/
87 DESTINATION include
88 FILES_MATCHING
89 PATTERN "*.def"
90 PATTERN "*.h"
91 PATTERN "*.td"
Chris Lattnerbc6ec752008-11-11 18:39:10 +000092 PATTERN ".svn" EXCLUDE
93 )
94
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +000095add_definitions( -D_GNU_SOURCE )
96
Daniel Dunbar45088e22009-11-17 09:32:51 +000097option(CLANG_BUILD_EXAMPLES "Build CLANG example programs." OFF)
98if(CLANG_BUILD_EXAMPLES)
99 add_subdirectory(examples)
100endif ()
101
Douglas Gregora393e9e2009-03-16 23:06:59 +0000102add_subdirectory(include)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000103add_subdirectory(lib)
Daniel Dunbarcbcd98b2009-03-24 02:52:57 +0000104add_subdirectory(tools)
Oscar Fuentesd2f4e5e2008-10-26 00:56:18 +0000105
106# TODO: docs.
Douglas Gregor291fbde2009-09-15 22:30:13 +0000107add_subdirectory(test)
108