You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example Rive animation display ([source code](./examples/render/source/main.cpp)):
@@ -35,6 +46,10 @@ YUP is an open-source library dedicated to empowering developers with advanced t
35
46
> The project is still in embryonic stage, use it at your own risk!
36
47
37
48
49
+
> [!IMPORTANT]
50
+
> We are looking for collaborators to bring forward the framework!
51
+
52
+
38
53
## Features
39
54
YUP brings a suite of powerful features, including:
40
55
-**High-Performance Rendering:** From intricate visualizations to high-speed gaming graphics, YUP handles it all with ease and efficiency, relying on the open source [Rive](https://rive.app/) Renderer, backed by Metal, Direct3D, OpenGL, Vulkan and WebGPU.
@@ -320,9 +335,6 @@ For full documentation, including more detailed tutorials and comprehensive API
320
335
Join our growing community and contribute to the YUP project. Connect with us and other YUP developers:
function (_yup_module_prepare_frameworks frameworks weak_frameworks output_variable)
148
148
set (temp_frameworks "")
149
-
foreach (framework${frameworks})
149
+
foreach (frameworkIN LISTS frameworks)
150
150
list (APPEND temp_frameworks "-framework ${framework}")
151
151
endforeach()
152
152
153
-
foreach (framework${weak_frameworks})
153
+
foreach (frameworkIN LISTS weak_frameworks)
154
154
list (APPEND temp_frameworks "-weak_framework ${framework}")
155
155
endforeach()
156
156
@@ -345,7 +345,7 @@ function (yup_add_module module_path modules_definitions module_group)
345
345
set (platform_properties "^(.*)Deps$|^(.*)Defines$|^(.*)Libs$|^(.*)Frameworks$|^(.*)WeakFrameworks$|^(.*)Options$|^(.*)LinkOptions$|^(.*)Packages$|^(.*)Searchpaths$|^(.*)CppStandard$")
0 commit comments