From 7bc66184d26d059ce701f60d9abe24d3ff074e1d Mon Sep 17 00:00:00 2001 From: Ruthger Dijt Date: Fri, 18 Mar 2022 15:21:14 +0100 Subject: [PATCH] libsmce: update to v1.5.0 --- .github/workflows/ci.yaml | 4 ++-- CMakeLists.txt | 2 +- project/src/bind/SMCE.gd | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index db7794ae..96485318 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,8 +2,8 @@ name: CI on: [ push, pull_request ] env: GODOT_EXPORT_TEMPLATE_VERSION: 3.4.3 - LIBSMCE_TAG: v1.4.0 - LIBSMCE_VERSION: 1.4 + LIBSMCE_TAG: v1.5.0 + LIBSMCE_VERSION: 1.5 jobs: rules: name: Compute job rules diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a021ed1..6925ac00 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,7 @@ set (CMAKE_CXX_EXTENSIONS OFF) set (CMAKE_POSITION_INDEPENDENT_CODE ON) find_package (Threads REQUIRED) -find_package (SMCE 1.4 REQUIRED) +find_package (SMCE 1.5 REQUIRED) set (SMCE_TARGET SMCE::SMCE) if (SMCEGD_SMCE_LINKING STREQUAL "STATIC") diff --git a/project/src/bind/SMCE.gd b/project/src/bind/SMCE.gd index 996db89e..cdd90dba 100644 --- a/project/src/bind/SMCE.gd +++ b/project/src/bind/SMCE.gd @@ -17,4 +17,4 @@ class_name SMCE -enum Status { CLEAN, CONFIGURED, RUNNING, SUSPENDED, STOPPED } +enum Status { CLEAN, CONFIGURED, PREPARED, RUNNING, SUSPENDED, STOPPED }