mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
14 lines
270 B
CMake
14 lines
270 B
CMake
|
set(LLVM_LINK_COMPONENTS ipo scalaropts linker bitreader bitwriter)
|
||
|
|
||
|
add_definitions( -DLLVM_VERSION_INFO=\"${PACKAGE_VERSION}\" )
|
||
|
|
||
|
# TODO: build a static library too.
|
||
|
set(BUILD_SHARED_LIBS ON)
|
||
|
|
||
|
add_llvm_library(LTO
|
||
|
LTOCodeGenerator.cpp
|
||
|
lto.cpp
|
||
|
LTOModule.cpp
|
||
|
)
|
||
|
|