[PATCH] D63097: [cmake] Don't add Support/Testing library if tests are not included

Artem Belevich via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 17 10:42:05 PDT 2019


tra added inline comments.


================
Comment at: lib/CMakeLists.txt:30
 add_subdirectory(XRay)
-add_subdirectory(Testing)
+if (${LLVM_INCLUDE_TESTING})
+  add_subdirectory(Testing)
----------------
Where does LLVM_INCLUDE_TESTING come from?
It should probably be an option() in llvm/CMakeLists.txt


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D63097/new/

https://reviews.llvm.org/D63097





More information about the llvm-commits mailing list