2008-11-15 06:06:14 +08:00
|
|
|
include(LLVMProcessSources)
|
2011-04-06 01:02:48 +08:00
|
|
|
include(LLVM-Config)
|
2008-09-22 09:08:49 +08:00
|
|
|
|
|
|
|
macro(add_llvm_library name)
|
2008-11-15 10:08:08 +08:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
|
|
|
add_library( ${name} ${ALL_FILES} )
|
2011-02-19 06:06:14 +08:00
|
|
|
set_property( GLOBAL APPEND PROPERTY LLVM_LIBS ${name} )
|
2008-09-23 02:21:51 +08:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2010-10-14 23:54:41 +08:00
|
|
|
|
|
|
|
if( BUILD_SHARED_LIBS )
|
2011-03-13 00:48:54 +08:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2010-10-14 23:54:41 +08:00
|
|
|
endif()
|
|
|
|
|
2011-03-30 04:51:08 +08:00
|
|
|
# Ensure that the system libraries always comes last on the
|
|
|
|
# list. Without this, linking the unit tests on MinGW fails.
|
|
|
|
link_system_libs( ${name} )
|
|
|
|
|
2011-04-29 10:12:06 +08:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
|
|
|
set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
|
|
|
|
else()
|
|
|
|
install(TARGETS ${name}
|
|
|
|
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Libraries")
|
2011-11-29 09:31:52 +08:00
|
|
|
|
|
|
|
# Add the explicit dependency information for this library.
|
|
|
|
#
|
|
|
|
# It would be nice to verify that we have the dependencies for this library
|
|
|
|
# name, but using get_property(... SET) doesn't suffice to determine if a
|
|
|
|
# property has been set to an empty value.
|
|
|
|
get_property(lib_deps GLOBAL PROPERTY LLVMBUILD_LIB_DEPS_${name})
|
|
|
|
target_link_libraries(${name} ${lib_deps})
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_library name)
|
|
|
|
|
2009-11-10 10:45:37 +08:00
|
|
|
macro(add_llvm_loadable_module name)
|
2010-10-23 03:03:24 +08:00
|
|
|
if( NOT LLVM_ON_UNIX OR CYGWIN )
|
2009-11-10 10:45:37 +08:00
|
|
|
message(STATUS "Loadable modules not supported on this platform.
|
|
|
|
${name} ignored.")
|
2010-12-10 10:15:36 +08:00
|
|
|
# Add empty "phony" target
|
|
|
|
add_custom_target(${name})
|
2009-11-10 10:45:37 +08:00
|
|
|
else()
|
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2010-12-22 16:30:17 +08:00
|
|
|
if (MODULE)
|
|
|
|
set(libkind MODULE)
|
|
|
|
else()
|
|
|
|
set(libkind SHARED)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library( ${name} ${libkind} ${ALL_FILES} )
|
2009-11-10 10:45:37 +08:00
|
|
|
set_target_properties( ${name} PROPERTIES PREFIX "" )
|
2009-11-10 23:30:33 +08:00
|
|
|
|
2011-03-13 00:48:54 +08:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2011-03-30 04:51:08 +08:00
|
|
|
link_system_libs( ${name} )
|
2011-03-13 00:48:54 +08:00
|
|
|
|
2009-11-10 23:30:33 +08:00
|
|
|
if (APPLE)
|
|
|
|
# Darwin-specific linker flags for loadable modules.
|
|
|
|
set_target_properties(${name} PROPERTIES
|
|
|
|
LINK_FLAGS "-Wl,-flat_namespace -Wl,-undefined -Wl,suppress")
|
|
|
|
endif()
|
|
|
|
|
2011-04-26 22:55:27 +08:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
2011-04-29 10:12:06 +08:00
|
|
|
set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
|
2011-04-26 22:55:27 +08:00
|
|
|
else()
|
|
|
|
install(TARGETS ${name}
|
|
|
|
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
|
|
|
endif()
|
2009-11-10 10:45:37 +08:00
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Loadable modules")
|
2009-11-10 10:45:37 +08:00
|
|
|
endmacro(add_llvm_loadable_module name)
|
|
|
|
|
|
|
|
|
2008-09-22 09:08:49 +08:00
|
|
|
macro(add_llvm_executable name)
|
2008-11-15 10:08:08 +08:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2009-11-23 08:21:43 +08:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
|
|
|
add_executable(${name} EXCLUDE_FROM_ALL ${ALL_FILES})
|
|
|
|
else()
|
|
|
|
add_executable(${name} ${ALL_FILES})
|
|
|
|
endif()
|
|
|
|
set(EXCLUDE_FROM_ALL OFF)
|
2011-03-30 04:51:08 +08:00
|
|
|
target_link_libraries( ${name} ${LLVM_USED_LIBS} )
|
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2009-08-14 12:38:57 +08:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2011-03-30 04:51:08 +08:00
|
|
|
link_system_libs( ${name} )
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_executable name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_tool name)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( NOT LLVM_BUILD_TOOLS )
|
2009-11-23 08:21:43 +08:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-26 04:25:25 +08:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( LLVM_BUILD_TOOLS )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION bin)
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Tools")
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_tool name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_example name)
|
|
|
|
# set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_EXAMPLES_BINARY_DIR})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( NOT LLVM_BUILD_EXAMPLES )
|
2009-11-23 08:21:43 +08:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-26 04:25:25 +08:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 08:32:42 +08:00
|
|
|
if( LLVM_BUILD_EXAMPLES )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION examples)
|
|
|
|
endif()
|
2011-02-21 06:06:10 +08:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Examples")
|
2008-09-22 09:08:49 +08:00
|
|
|
endmacro(add_llvm_example name)
|
2008-09-26 12:40:32 +08:00
|
|
|
|
|
|
|
|
2011-02-21 06:06:10 +08:00
|
|
|
macro(add_llvm_utility name)
|
|
|
|
add_llvm_executable(${name} ${ARGN})
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Utils")
|
|
|
|
endmacro(add_llvm_utility name)
|
|
|
|
|
|
|
|
|
2008-09-26 12:40:32 +08:00
|
|
|
macro(add_llvm_target target_name)
|
2011-07-26 04:17:01 +08:00
|
|
|
include_directories(BEFORE
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR})
|
2009-06-24 01:57:35 +08:00
|
|
|
add_llvm_library(LLVM${target_name} ${ARGN} ${TABLEGEN_OUTPUT})
|
2011-02-20 10:55:27 +08:00
|
|
|
set( CURRENT_LLVM_TARGET LLVM${target_name} )
|
2008-09-26 12:40:32 +08:00
|
|
|
endmacro(add_llvm_target)
|