mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
5bc3b7d901
This essentially reverts r251936, minimizing the difference between Chapter2 and Chapter 3, and making Chapter 2's code match the tutorial text. llvm-svn: 281945
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()
|