From 3ec681a6da809b10eed6154f7a7936acb03e125a Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Tue, 28 Sep 2021 14:23:09 +0100 Subject: [PATCH] Update building doc with deprecated path --- docs/building.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/building.md b/docs/building.md index f112a8ae..7366816e 100644 --- a/docs/building.md +++ b/docs/building.md @@ -168,7 +168,7 @@ From the `build_ninja` directory, you can run ninja ``` -# Running examples +# Running deprecated examples Inside the build directory, by default, there will be a `dist` directory that contains @@ -178,12 +178,12 @@ interpreter[.exe] ``` On Windows, the simplest way to run an example is ``` -build\dist\veronac.exe --run testsuite\veronac\demo\run-pass\dining_phil.verona +build\dist\veronac.exe --run testsuite\deprecated\veronac\demo\run-pass\dining_phil.verona ``` On Linux, the simplest way to run an example is ``` -build_ninja/dist/veronac --run testsuite/veronac/demo/run-pass/dining_phil.verona +build_ninja/dist/veronac --run testsuite/deprecated/veronac/demo/run-pass/dining_phil.verona ``` This compiles the program to byte code and runs it through our interpreter. @@ -208,4 +208,4 @@ Where `` is the build type, e.g. Debug. ## Building the runtime tests By default, the runtime tests are not built. To enable their building -call cmake with `-DRT_TESTS=ON`. \ No newline at end of file +call cmake with `-DRT_TESTS=ON`.