h48

A prototype for an optimal Rubik's cube solver, work in progress.
git clone https://git.tronto.net/h48
Download | Log | Files | Refs | README | LICENSE

Makefile (222B)


      1 all: nissyqt
      2 
      3 nissyqt:
      4 	mkdir -p build
      5 	cmake . -B build
      6 	cd build && make
      7 	cp build/appnissyqt ./run
      8 
      9 run:
     10 	QT_LOGGING_RULES="*.debug=true; qt.*.debug=false" ./run
     11 
     12 clean:
     13 	rm -rf run build
     14 
     15 .PHONY: all nissyqt run clean