mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-06 10:06:26 +02:00
Debug cmake integration
This commit is contained in:
parent
a6f39855a3
commit
62d7a030d2
2 changed files with 3 additions and 8 deletions
|
@ -6,13 +6,7 @@ add_library(chessarbiter SHARED src/Piece.cpp src/Board.cpp src/Fen.cpp src/Ches
|
||||||
include_directories(src/)
|
include_directories(src/)
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
set(CHESSARBITER_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/includes) # For conveniance
|
set(CHESSARBITER_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src PARENT_SCOPE) # To be used by other projects with add_subdirectory()
|
||||||
set(CHESSARBITER_INCLUDE_DIR ${CHESSARBITER_INCLUDE_DIR} PARENT_SCOPE) # To be used by other projects with add_subdirectory()
|
|
||||||
file(MAKE_DIRECTORY ${CHESSARBITER_INCLUDE_DIR})
|
|
||||||
configure_file(src/Piece.hpp ${CHESSARBITER_INCLUDE_DIR}/pgnp.hpp COPYONLY)
|
|
||||||
configure_file(src/Board.hpp ${CHESSARBITER_INCLUDE_DIR} COPYONLY)
|
|
||||||
configure_file(src/Fen.hpp ${CHESSARBITER_INCLUDE_DIR} COPYONLY)
|
|
||||||
configure_file(src/ChessArbiter.hpp ${CHESSARBITER_INCLUDE_DIR} COPYONLY)
|
|
||||||
|
|
||||||
# Unit tests
|
# Unit tests
|
||||||
enable_testing()
|
enable_testing()
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#pragma once
|
||||||
#include "Board.hpp"
|
#include "Board.hpp"
|
||||||
#include "Fen.hpp"
|
#include "Fen.hpp"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
@ -46,4 +47,4 @@ public:
|
||||||
bool IsDrawByRepetitions();
|
bool IsDrawByRepetitions();
|
||||||
bool IsDraw();
|
bool IsDraw();
|
||||||
};
|
};
|
||||||
} // namespace chessarbiter
|
} // namespace chessarbiter
|
||||||
|
|
Loading…
Add table
Reference in a new issue