Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arithy committed Oct 24, 2021
1 parent 6da5a4c commit 803317b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/ast-tinyc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ You must have [Build Tools for Visual Studio](https://visualstudio.microsoft.com
You can get the executable by executing the following commands using 'Developer Command Prompt for VS 2019' or 'Developer PowerShell for VS 2019':

```
cd /path/to/this_directory
cd \path\to\this_directory
mkdir build
cd build
cmake -DPACKCC=/path/to/packcc ..
cmake -DPACKCC=\path\to\packcc ..
MSBuild ALL_BUILD.vcxproj
```

Here, `/path/to/this_directory` represents the path name of this directory,
and `/path/to/packcc` represents the path name of `packcc` command.
Here, `\path\to\this_directory` represents the path name of this directory,
and `\path\to\packcc` represents the path name of `packcc` command.
If `packcc` command is installed in one of the directories specified in the environment variable `PATH`,
the option `-DPACKCC=/path/to/packcc` is not necessary.
the option `-DPACKCC=\path\to\packcc` is not necessary.

The executable `ast.exe` will be created in the directory `build`.
The executable `ast.exe` will be created in the directory `build\Debug`.

#### Using MinGW-w64 ####

Expand Down

0 comments on commit 803317b

Please sign in to comment.