Skip to content

Commit a2afdbb

Browse files
committed
Update README
1 parent 5e9e182 commit a2afdbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ With C++, the workflow looks like this:
192192
2. Create a directory for build files. Anywhere is fine.
193193
3. Open a Command Prompt by clicking the Start button, typing "Command Prompt", then clicking the app
194194
4. Execute `cd /path/to/your/build/directory`
195-
5. Execute `cmake -G "Visual Studio VERSION YEAR Win64" -DEDITOR=TRUE /path/to/your/project/CppSource`. Replace `VERSION` and `YEAR` with the version of Visual Studio you want to use. To see the options, execute `cmake --help` and look at the list at the bottom. For example, use `"Visual Studio 15 2017 Win64"` for Visual Studio 2017. Any version, including Community, works just fine. Remove `-DEDITOR=TRUE` for standalone builds.
195+
5. Execute `cmake -G "Visual Studio VERSION YEAR Win64" -DEDITOR=TRUE /path/to/your/project/CppSource`. Replace `VERSION` and `YEAR` with the version of Visual Studio you want to use. To see the options, execute `cmake --help` and look at the list at the bottom. For example, use `"Visual Studio 15 2017 Win64"` for Visual Studio 2017. Any version, including Community, works just fine. Remove `-DEDITOR=TRUE` for standalone builds. If you are using Visual Studio 2019, execute `cmake -G "Visual Studio 16" -A "x64" -DEDITOR=TRUE /path/to/your/project/CppSource` instead.
196196
6. The project files are now generated in your build directory
197197
7. Open `NativeScript.sln` and click `Build > Build Solution`.
198198

0 commit comments

Comments
 (0)