[PATCH] D13453: Always generate cmake config files

NAKAMURA Takumi via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 8 16:28:30 PDT 2015


chapuni accepted this revision.
This revision is now accepted and ready to land.

================
Comment at: CMakeLists.txt:553
@@ -552,3 +552,3 @@
 
-if (CLANG_BUILT_STANDALONE)
+if (CLANG_BUILT_STANDALONE OR CMAKE_VERSION VERSION_GREATER 3)
   # Generate a list of CMake library targets so that other CMake projects can
----------------
I'm afraid you mistook "conditionally skipped" as "worked".

Please change the condition, like

  - 2.9
  - 3.0.1 (Not sure any distros might take <3.0.2)
  - EQUAL 3 OR GREATER 3
  - NOT LESS 3


http://reviews.llvm.org/D13453





More information about the cfe-commits mailing list