Skip to content

Commit

Permalink
use SDK 4.5.0 internally
Browse files Browse the repository at this point in the history
- all SDK examples now have a valid device_categories entry
  • Loading branch information
ypujante committed Oct 8, 2024
1 parent 048d4fb commit 09dbf79
Show file tree
Hide file tree
Showing 5 changed files with 1,461 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cmake_minimum_required(VERSION 3.17)
# Setting up project
project(re-mock LANGUAGES CXX)
set(re-mock_VERSION_MAJOR 1)
set(re-mock_VERSION_MINOR 6)
set(re-mock_VERSION_MINOR 7)
set(re-mock_VERSION_PATCH 0)
set(re-mock_VERSION "${re-mock_VERSION_MAJOR}.${re-mock_VERSION_MINOR}.${re-mock_VERSION_PATCH}")

Expand All @@ -34,14 +34,14 @@ else()
endif()

# The SDK (api only) is part of this project
set(RE_MOCK_SDK_ROOT "${CMAKE_CURRENT_LIST_DIR}/external/ReasonStudios/JukeboxSDK_4.4.0/SDK")
set(RE_MOCK_SDK_ROOT "${CMAKE_CURRENT_LIST_DIR}/external/ReasonStudios/JukeboxSDK_4.5.0/SDK")

# In dev build we enable testing
if(re-mock_DEV_BUILD)
enable_testing()

# Using RE SDK version 4.4.0
set(RE_SDK_VERSION 4.4.0)
# Using RE SDK version 4.5.0
set(RE_SDK_VERSION 4.5.0)

# Location of RE SDK: can be set when invoking cmake => cmake -D "RE_SDK_ROOT:PATH=/path/to/re_sdk"
# or via -p option in configure.py script or in cmake-gui
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ Links
Release notes
-------------

#### 1.7.0 - 2024-10-08

- Upgraded SDK to 4.5.0 (although there is **no** API change)

#### 1.6.0 - 2024-06-19

- Added support for `device_categories` in `info.lua` which was added as a new requirement with Reason 13
Expand Down
Loading

0 comments on commit 09dbf79

Please sign in to comment.