mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
75318bcc3c
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@221592 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
512 B
CMake
33 lines
512 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
BitReader
|
|
Core
|
|
MCDisassembler
|
|
Object
|
|
Target
|
|
)
|
|
|
|
if(TARGET LLVM)
|
|
set(LLVM_LINK_COMPONENTS)
|
|
endif()
|
|
|
|
if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -Wstrict-prototypes")
|
|
endif ()
|
|
|
|
add_llvm_tool(llvm-c-test
|
|
calc.c
|
|
disassemble.c
|
|
helpers.c
|
|
include-all.c
|
|
main.c
|
|
module.c
|
|
object.c
|
|
targets.c
|
|
)
|
|
|
|
# Use libLLVM.so if it is available.
|
|
if(TARGET LLVM)
|
|
target_link_libraries(llvm-c-test LLVM)
|
|
endif()
|