-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathREADME.txt
43 lines (27 loc) · 1.19 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
CONTENTS OF THIS FILE
---------------------
* Introduction
* Building
INTRODUCTION
------------
RiveSharpSample.sln contains the Rive C# runtime, along with examples on how
to use it:
Viewer.csproj: A simple UWP app that draws 4 .riv files with pointer events.
StateMachineInputs.csproj: A simple UWP app that draws a remote .riv file and
data binds state machine inputs to XAML controls.
Goldens.csproj: A console app that renders images for testing
BUILDING
------------
==== In the public "rive-sharp" repo ====
You just need to fetch the rive-cpp submodule:
git submodule update --init
After that, you should be able to open RiveSharpSample.sln in Visual Studio 2022
community, build, and run!
Rive is constantly making use of the latest clang features, so please only use the LLVM Platform Toolset and ensure your Visual Studio is up to date with the latest version.
==== In the internal "rive" repo ====
To build, you first need to generate rive.vcproj, the project that builds the
native rive.dll:
cd Native
premake5.exe vs2022
Once rive.vcproj is generated, you should be able to open RiveSharpSample.sln in
Visual Studio 2022 community, build, and run!