2012-06-01 06:34:00 +08:00
|
|
|
add_subdirectory(ELF)
|
|
|
|
add_subdirectory(MachO)
|
|
|
|
add_subdirectory(Native)
|
|
|
|
add_subdirectory(PECOFF)
|
|
|
|
add_subdirectory(YAML)
|
2014-02-26 14:28:09 +08:00
|
|
|
|
2015-01-21 03:23:44 +08:00
|
|
|
if (MSVC)
|
|
|
|
add_definitions(-wd4062) # Suppress 'warning C4062: Enumerator has no associated handler in a switch statement.'
|
|
|
|
endif()
|
|
|
|
|
2015-01-22 05:26:27 +08:00
|
|
|
add_llvm_library(lldReaderWriter
|
2013-08-07 06:31:59 +08:00
|
|
|
CoreLinkingContext.cpp
|
2013-12-06 12:43:01 +08:00
|
|
|
FileArchive.cpp
|
2013-03-01 08:03:36 +08:00
|
|
|
LinkerScript.cpp
|
2015-01-22 05:26:27 +08:00
|
|
|
LINK_LIBS
|
|
|
|
lldCore
|
2015-01-22 06:54:56 +08:00
|
|
|
lldYAML
|
2015-01-22 05:26:27 +08:00
|
|
|
LLVMObject
|
|
|
|
LLVMSupport
|
2012-12-05 05:09:04 +08:00
|
|
|
)
|