Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sithlord48 committed Dec 27, 2023
1 parent 573471e commit 0f882bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ jobs:
C:/ProgramData/chocolatey/lib/Graphviz
C:/Program*/doxygen/
C:/Program*/Graphviz/
C:/Python*/
key: cache-chocolatey${{ matrix.config.WIN_ARCH }}-zlib-1-3-python312
key: cache-chocolatey${{ matrix.config.WIN_ARCH }}-zlib-1-3

- name: Setup MSVC Shell For Windows
if: runner.os == 'Windows'
Expand All @@ -133,7 +132,7 @@ jobs:
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update > /dev/null && sudo apt-get install -qqq doxygen graphviz devscripts libxkbcommon-x11-0 ninja-build clang > /dev/null
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install ninja doxygen.install graphviz python312
choco install ninja doxygen.install graphviz
else
brew install doxygen graphviz ninja
fi
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ cmake_minimum_required(VERSION 3.21)
cmake_policy(SET CMP0074 NEW)

#Set The Current Version Number to use as fallback if GIT Fails.
set(FF7TK_VERSION_MAJOR 0)
set(FF7TK_VERSION_MINOR 83)
set(FF7TK_VERSION_PATCH 3)
set(FF7TK_VERSION_MAJOR 1)
set(FF7TK_VERSION_MINOR 0)
set(FF7TK_VERSION_PATCH 0)
set(FF7TK_VERSION_TWEAK 0)
# Get the version from git if it's a git repository
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
Expand Down
2 changes: 1 addition & 1 deletion cmake/ff7tkMacros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ macro(MAKE_LIBRARY LIB_TARGET HEADER_INSTALL_DIR)
write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/${LIB_TARGET}ConfigVersion.cmake
VERSION ${PROJECT_VERSION}
COMPATIBILITY SameMinorVersion
COMPATIBILITY SameMajorVersion
)
configure_package_config_file(
${CMAKE_CURRENT_SOURCE_DIR}/${LIB_TARGET}Config.cmake.in
Expand Down

0 comments on commit 0f882bd

Please sign in to comment.