mirror of
https://gitlab.com/manzerbredes/chess-move-interface.git
synced 2025-04-05 17:46:30 +02:00
Chess moves representation standard.
src | ||
.gitignore | ||
CMakeLists.txt | ||
LICENSE | ||
README.md |
Chess Move Interface
The Chess Move Interface (CMI) define a common Interface for standard chess half moves. It allows for a better interoperability among chess libraries.
CMake Integration
By using the add_subdirectory()
directive on this repository, you will be able to use the following cmake calls in your project:
include_directories(${CMI_INCLUDE_DIR})
target_link_libraries(<YOUR_TARGET> ChessMoveInterface)
Note that the ChessMoveInterface
target is guaranty to be define only once. Thus, it can be part of several subprojects/submodules in a given project.
How to use it ?
Create your own implementation of a chess half move by extending CMI::HalfMove
. See the following projects for more informations: