I have been using cmake gui with following configurations
(LLVM_ENABLE_PROJECTS="clang;lldb;clang-tools-extra")
to generate sln visual studio project file for build, it can compile, but llvm-config.h file is not generated (from llvm/Config/llvm-config.h.cmake);
Also tried to include clang frontend and matcher headers, but gives inc file not found:
Error C1083 Cannot open include file: 'clang/AST/DeclNodes.inc': No such file or directory
clang\include\clang\AST\ASTFwd.h 21
how to fix this? Thanks.