README 654 B

123456789101112131415
  1. This subdirectory contains puzzle implementations which are
  2. half-written, fundamentally flawed, or in other ways unready to be
  3. shipped as part of the polished Puzzles collection.
  4. The CMake build system will _build_ all of the source in this
  5. directory (to ensure it hasn't become unbuildable), but they won't be
  6. included in all-in-one puzzle binaries or installed by 'make install'
  7. targets. If you want to temporarily change that, you can reconfigure
  8. your build by defining the CMake variable PUZZLES_ENABLE_UNFINISHED.
  9. For example,
  10. cmake . -DPUZZLES_ENABLE_UNFINISHED="group;slide"
  11. will build as if both Group and Slide were fully official puzzles.