mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-28 07:05:11 +00:00
4cd6605af1
This essentially reverts r251936, minimizing the difference between Chapter2 and Chapter 3, and making Chapter 2's code match the tutorial text. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281945 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
227 B
CMake
14 lines
227 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_kaleidoscope_chapter(Kaleidoscope-Ch2
|
|
toy.cpp
|
|
)
|
|
|
|
if(LLVM_COMPILER_IS_GCC_COMPATIBLE)
|
|
target_compile_options(Kaleidoscope-Ch2 PRIVATE
|
|
-Wno-unused-private-field
|
|
)
|
|
endif()
|