• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

READMEH A D28-Jan-2022654 1511

group.cH A D28-Jan-202269.3 KiB2,4321,801

group.gapH A D28-Jan-20223.1 KiB9889

numgame.cH A D28-Jan-202233.6 KiB1,291846

path.cH A D28-Jan-202225.1 KiB867417

separate.cH A D28-Jan-202222.4 KiB864496

slide.cH A D28-Jan-202262.2 KiB2,4461,775

sokoban.cH A D28-Jan-202239.5 KiB1,478942

README

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