forked from OSchip/llvm-project
13 lines
299 B
CMake
13 lines
299 B
CMake
add_subdirectory(clang-cc)
|
|
add_subdirectory(driver)
|
|
add_subdirectory(index-test)
|
|
option(CLANG_BUILD_EXPERIMENTAL "Build experimenal Clang tools" OFF)
|
|
if (CLANG_BUILD_EXPERIMENTAL)
|
|
add_subdirectory(wpa)
|
|
endif ()
|
|
add_subdirectory(CIndex)
|
|
if (MSVC)
|
|
else ()
|
|
add_subdirectory(c-index-test)
|
|
endif ()
|