mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
7e82200a05
Thanks to chapuni200000 for help with this in IRC! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200321 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
516 B
CMake
15 lines
516 B
CMake
add_subdirectory(IR)
|
|
|
|
if( MSVC_IDE OR XCODE )
|
|
# Creates a dummy target containing all headers for the benefit of
|
|
# XCode and Visual Studio users.
|
|
file(GLOB_RECURSE headers *.h)
|
|
add_td_sources(headers)
|
|
add_library(llvm_headers_do_not_build EXCLUDE_FROM_ALL
|
|
# We need at least one source file:
|
|
${LLVM_MAIN_SRC_DIR}/lib/Transforms/Hello/Hello.cpp
|
|
${headers})
|
|
set_target_properties(llvm_headers_do_not_build PROPERTIES FOLDER "Misc"
|
|
EXCLUDE_FROM_DEFAULT_BUILD ON)
|
|
endif()
|