Skip to content

Commit 0a1a3e8

Browse files
fix(apple): added build fix for a change of fork, bumped sol2 to 3.3.1, better stacktrace availability check
1 parent 73b7561 commit 0a1a3e8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

deps/imgui-sfml/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ FetchContent_Declare(
2323
FetchContent_Declare(
2424
imgui-sfml
2525
# GIT_REPOSITORY https://github.com/SFML/imgui-sfml.git
26-
GIT_REPOSITORY https://github.com/mlbonniec/imgui-sfml.git
26+
GIT_REPOSITORY https://github.com/Sinan-Karakaya/imgui-sfml.git
2727
GIT_TAG 2.6.x
2828
# GIT_COMMIT 5f54b69b6aee18db846c81633f86f78c2586dded
2929
# ^ or like this - sometimes it's better because FetchContent won't look

runtime/src/Utils/CrashUtils.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#pragma once
99

10-
#if __cplusplus >= 202300L
10+
#if __cplusplus >= 202300L && __cpp_lib_stracktrace
1111
#include <stacktrace>
1212
#endif
1313

@@ -102,7 +102,7 @@ namespace RType::Utils
102102
ss << info << std::endl;
103103
ss << std::endl;
104104

105-
#if __cplusplus >= 202300L
105+
#if __cplusplus >= 202300L && __cpp_lib_stacktrace
106106
ss << "Stacktrace" << std::endl;
107107
ss << "------------------" << std::endl;
108108
ss << std::stacktrace::current() << std::endl;

vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
{
2222
"name": "sol2",
23-
"version>=": "3.3.0"
23+
"version>=": "3.3.1"
2424
},
2525
{
2626
"name": "asio",

0 commit comments

Comments
 (0)