bolt/deps/llvm-18.1.8/llvm/examples/Kaleidoscope/Chapter2/CMakeLists.txt
2025-02-14 19:21:04 +01:00

14 lines
366 B
CMake

add_kaleidoscope_chapter(Kaleidoscope-Ch2
toy.cpp
)
if(LLVM_COMPILER_IS_GCC_COMPATIBLE)
target_compile_options(Kaleidoscope-Ch2 PRIVATE
-Wno-unused-private-field
)
endif()
if(MSVC)
# ignore "warning LNK4199: /DELAYLOAD:shell32.dll ignored; no imports found from shell32.dll"
target_link_libraries(Kaleidoscope-Ch2 PRIVATE "-ignore:4199")
endif()