billforsternz / thc-chess-library

General Purpose Rules of Chess Library for C++
MIT License
38 stars 13 forks source link

Installation and Documentation? #1

Closed khushit-shah closed 4 years ago

khushit-shah commented 4 years ago

Hey, Is there any installation and documentation?

billforsternz commented 4 years ago

Sadly no. As far as "installation" is concerned, it's not really that kind of library. I found actual libraries are annoying to deploy in C++, so I reused an Idea I first saw in sqlite - the individual .cpp and .h files are concatenated into a single thc.cpp and thc.h which you can then just drop into any C++ project. There is example code in my Tarrasch chess gui project (and latterly in my simpler, smaller retro sargon project) and the various APIs are documented inline inside the source files - but sadly no standalone documentation. Sorry.

khushit-shah commented 4 years ago

Okay, Cool!