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
This is the guide to building the latest version of SCRCPY+ for all operating systems. Note: ***PREREQUISITES FOR RUNNING SCRCPY+ ARE DIFFERENT THAN BUILDING***
4
+
5
+
## Prerequisites
6
+
- Windows
7
+
-[Node v16](https://nodejs.org/en/)
8
+
- NPM (Comes with Node)
9
+
- Yarn for Node // run `npm i -g yarn`
10
+
- Linux / Mac
11
+
-[Node v16](https://nodejs.org/en/)
12
+
- NPM (Comes with Node)
13
+
- Yarn Package Manager // [Download](https://yarnpkg.com/) OR RUN `sudo npm i -g yarn`
14
+
15
+
## Build
16
+
- Windows
17
+
- Edit `src/renderer/nuxt.config.js` & comment the line that says `//Development` by adding 2 slashes `//` in front of the line. Uncomment the line that says `//Production` by removing the 2 slashes at the start of the line.
18
+
- run `yarn install`
19
+
- run `yarn install`
20
+
- run `yarn build`
21
+
- the output files should be in the `build` folder
22
+
- Linux / Mac
23
+
- Edit `src/renderer/nuxt.config.js` & comment the line that says `//Development` by adding 2 slashes `//` in front of the line. Uncomment the line that says `//Production` by removing the 2 slashes at the start of the line.
24
+
- Edit `src/renderer/nuxt.config.js` & change the line that says `os: "windows",` to say `os: "linux",`
25
+
***NOTE: IF YOU ARE ON MACOS, IT SHOULD STILL SAY LINUX, NOT MACOS***
26
+
- run `yarn install`
27
+
- run `yarn build`
28
+
- the output files should be in the `build` folder
0 commit comments