2008-11-14 22:06:14 +00:00
|
|
|
include(LLVMProcessSources)
|
2011-04-05 17:02:48 +00:00
|
|
|
include(LLVM-Config)
|
2008-09-22 01:08:49 +00:00
|
|
|
|
|
|
|
macro(add_llvm_library name)
|
2008-11-15 02:08:08 +00:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
|
|
|
add_library( ${name} ${ALL_FILES} )
|
2011-02-18 22:06:14 +00:00
|
|
|
set_property( GLOBAL APPEND PROPERTY LLVM_LIBS ${name} )
|
2008-09-22 18:21:51 +00:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2010-10-14 15:54:41 +00:00
|
|
|
|
|
|
|
if( BUILD_SHARED_LIBS )
|
2011-03-12 16:48:54 +00:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2010-10-14 15:54:41 +00:00
|
|
|
endif()
|
|
|
|
|
2011-03-29 20:51:08 +00: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 02:12:06 +00: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()
|
2009-08-16 05:16:43 +00:00
|
|
|
# The LLVM Target library shall be built before its sublibraries
|
|
|
|
# (asmprinter, etc) because those may use tablegenned files which
|
|
|
|
# generation is triggered by the main LLVM target library. Necessary
|
|
|
|
# for parallel builds:
|
|
|
|
if( CURRENT_LLVM_TARGET )
|
2009-08-16 09:44:27 +00:00
|
|
|
add_dependencies(${name} ${CURRENT_LLVM_TARGET})
|
2009-08-16 05:16:43 +00:00
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Libraries")
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_library name)
|
|
|
|
|
|
|
|
|
2009-11-10 02:45:37 +00:00
|
|
|
macro(add_llvm_loadable_module name)
|
2010-10-22 19:03:24 +00:00
|
|
|
if( NOT LLVM_ON_UNIX OR CYGWIN )
|
2009-11-10 02:45:37 +00:00
|
|
|
message(STATUS "Loadable modules not supported on this platform.
|
|
|
|
${name} ignored.")
|
2010-12-10 02:15:36 +00:00
|
|
|
# Add empty "phony" target
|
|
|
|
add_custom_target(${name})
|
2009-11-10 02:45:37 +00:00
|
|
|
else()
|
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2010-12-22 08:30:17 +00:00
|
|
|
if (MODULE)
|
|
|
|
set(libkind MODULE)
|
|
|
|
else()
|
|
|
|
set(libkind SHARED)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_library( ${name} ${libkind} ${ALL_FILES} )
|
2009-11-10 02:45:37 +00:00
|
|
|
set_target_properties( ${name} PROPERTIES PREFIX "" )
|
2009-11-10 15:30:33 +00:00
|
|
|
|
2011-03-12 16:48:54 +00:00
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2011-03-29 20:51:08 +00:00
|
|
|
link_system_libs( ${name} )
|
2011-03-12 16:48:54 +00:00
|
|
|
|
2009-11-10 15:30:33 +00: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 14:55:27 +00:00
|
|
|
if( EXCLUDE_FROM_ALL )
|
2011-04-29 02:12:06 +00:00
|
|
|
set_target_properties( ${name} PROPERTIES EXCLUDE_FROM_ALL ON)
|
2011-04-26 14:55:27 +00:00
|
|
|
else()
|
|
|
|
install(TARGETS ${name}
|
|
|
|
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
|
|
|
|
endif()
|
2009-11-10 02:45:37 +00:00
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
|
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Loadable modules")
|
2009-11-10 02:45:37 +00:00
|
|
|
endmacro(add_llvm_loadable_module name)
|
|
|
|
|
|
|
|
|
2008-09-22 01:08:49 +00:00
|
|
|
macro(add_llvm_executable name)
|
2008-11-15 02:08:08 +00:00
|
|
|
llvm_process_sources( ALL_FILES ${ARGN} )
|
2009-11-23 00:21:43 +00: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-29 20:51:08 +00:00
|
|
|
target_link_libraries( ${name} ${LLVM_USED_LIBS} )
|
|
|
|
llvm_config( ${name} ${LLVM_LINK_COMPONENTS} )
|
2009-08-14 04:38:57 +00:00
|
|
|
if( LLVM_COMMON_DEPENDS )
|
|
|
|
add_dependencies( ${name} ${LLVM_COMMON_DEPENDS} )
|
|
|
|
endif( LLVM_COMMON_DEPENDS )
|
2011-03-29 20:51:08 +00:00
|
|
|
link_system_libs( ${name} )
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_executable name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_tool name)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_TOOLS_BINARY_DIR})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( NOT LLVM_BUILD_TOOLS )
|
2009-11-23 00:21:43 +00:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-25 20:25:25 +00:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( LLVM_BUILD_TOOLS )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION bin)
|
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Tools")
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_tool name)
|
|
|
|
|
|
|
|
|
|
|
|
macro(add_llvm_example name)
|
|
|
|
# set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${LLVM_EXAMPLES_BINARY_DIR})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( NOT LLVM_BUILD_EXAMPLES )
|
2009-11-23 00:21:43 +00:00
|
|
|
set(EXCLUDE_FROM_ALL ON)
|
|
|
|
endif()
|
2010-09-25 20:25:25 +00:00
|
|
|
add_llvm_executable(${name} ${ARGN})
|
2009-11-23 00:32:42 +00:00
|
|
|
if( LLVM_BUILD_EXAMPLES )
|
|
|
|
install(TARGETS ${name} RUNTIME DESTINATION examples)
|
|
|
|
endif()
|
2011-02-20 22:06:10 +00:00
|
|
|
set_target_properties(${name} PROPERTIES FOLDER "Examples")
|
2008-09-22 01:08:49 +00:00
|
|
|
endmacro(add_llvm_example name)
|
2008-09-26 04:40:32 +00:00
|
|
|
|
|
|
|
|
2011-02-20 22:06:10 +00: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 04:40:32 +00:00
|
|
|
macro(add_llvm_target target_name)
|
|
|
|
if( TABLEGEN_OUTPUT )
|
|
|
|
add_custom_target(${target_name}Table_gen
|
|
|
|
DEPENDS ${TABLEGEN_OUTPUT})
|
|
|
|
add_dependencies(${target_name}Table_gen ${LLVM_COMMON_DEPENDS})
|
|
|
|
endif( TABLEGEN_OUTPUT )
|
|
|
|
include_directories(BEFORE ${CMAKE_CURRENT_BINARY_DIR})
|
2009-06-23 17:57:35 +00:00
|
|
|
add_llvm_library(LLVM${target_name} ${ARGN} ${TABLEGEN_OUTPUT})
|
2009-06-23 21:05:21 +00:00
|
|
|
if ( TABLEGEN_OUTPUT )
|
|
|
|
add_dependencies(LLVM${target_name} ${target_name}Table_gen)
|
2011-02-20 22:06:10 +00:00
|
|
|
set_target_properties(${target_name}Table_gen PROPERTIES FOLDER "Tablegenning")
|
2009-06-23 21:05:21 +00:00
|
|
|
endif (TABLEGEN_OUTPUT)
|
2011-02-20 02:55:27 +00:00
|
|
|
set( CURRENT_LLVM_TARGET LLVM${target_name} )
|
2008-09-26 04:40:32 +00:00
|
|
|
endmacro(add_llvm_target)
|