-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix: style: too many changes long ago (linux)
- Loading branch information
Showing
19 changed files
with
567 additions
and
1,049 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,20 @@ | ||
# - Try to find libGlyphy | ||
# Once done this will define | ||
# LIBGLYPHY_FOUND - System has libglyphy | ||
# LIBGLYPHY_INCLUDE_DIRS - The GLyphy include directories | ||
# LIBGLYPHY_LIBRARIES - The libraries needed to use libglyphy | ||
# LIBGLYPHY_DEFINITIONS - Compiler switches required for using libglyphy | ||
|
||
find_path(LIBGLYPHY_INCLUDE_DIR NAMES glyphy.h HINTS ${PROJECT_SOURCE_DIR}/deps/glyphy/src) | ||
|
||
find_library(LIBGLYPHY_LIBRARY NAMES goban_glyphy.lib libglyphy.a HINTS ${PROJECT_SOURCE_DIR}/deps/glyphy/win32/x64/${CMAKE_BUILD_TYPE}) | ||
find_library(LIBGLYPHY_LIBRARY NAMES goban_glyphy.lib libglyphy.a | ||
HINTS ${PROJECT_SOURCE_DIR}/deps/glyphy/win32/x64/${CMAKE_BUILD_TYPE} | ||
HINTS ${PROJECT_BINARY_DIR}/deps/glyphy/build/src/.libs | ||
) | ||
|
||
add_library(libglyphy STATIC IMPORTED) | ||
|
||
message(${PROJECT_SOURCE_DIR}/deps/glyphy/win32/x64/${CMAKE_BUILD_TYPE}) | ||
set(LIBGLYPHY_LIBRARIES | ||
${LIBGLYPHY_LIBRARY} | ||
set_target_properties(libglyphy PROPERTIES | ||
IMPORTED_LOCATION ${LIBGLYPHY_LIBRARY} | ||
) | ||
set(LIBGLYPHY_INCLUDE_DIRS ${LIBGLYPHY_INCLUDE_DIR}) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
# handle the QUIETLY and REQUIRED arguments and set LIBGLYPHY_FOUND to TRUE | ||
# if all listed variables are TRUE | ||
|
||
find_package_handle_standard_args(LibGlyphy DEFAULT_MSG | ||
LIBGLYPHY_LIBRARY LIBGLYPHY_INCLUDE_DIR) | ||
LIBGLYPHY_LIBRARY LIBGLYPHY_INCLUDE_DIR) | ||
|
||
mark_as_advanced(LIBGLYPHY_INCLUDE_DIR LIBGLYPHY_LIBRARY ) | ||
mark_as_advanced(LIBGLYPHY_INCLUDE_DIR LIBGLYPHY_LIBRARY) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
#include <memory> | ||
#include "Board.h" | ||
|
||
#include "OpenGL.h" | ||
#include "SGF.h" | ||
|
||
class GameRecord { | ||
public: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// Created by jan on 4/18/21. | ||
// | ||
|
||
#ifndef GOBAN_SGF_H | ||
#define GOBAN_SGF_H | ||
|
||
#undef None | ||
|
||
#include <ISgfcTreeBuilder.h> | ||
#include <SgfcPlusPlusFactory.h> | ||
#include <ISgfcPropertyFactory.h> | ||
#include <ISgfcPropertyValueFactory.h> | ||
#include <ISgfcPropertyValue.h> | ||
#include <SgfcPropertyType.h> | ||
#include <SgfcPlusPlusExport.h> | ||
#include <ISgfcGoMovePropertyValue.h> | ||
#include <SgfcGameType.h> | ||
#include <ISgfcGame.h> | ||
#include <ISgfcNode.h> | ||
#include <ISgfcDocument.h> | ||
#include <ISgfcDocumentWriter.h> | ||
#include <SgfcConstants.h> | ||
|
||
#endif //GOBAN_SGF_H |
Oops, something went wrong.