diff --git a/samples/csvparser/README.md b/samples/csvparser/README.md index 1987f9e8015..8bc0e9ac6cb 100644 --- a/samples/csvparser/README.md +++ b/samples/csvparser/README.md @@ -4,7 +4,7 @@ A sample data [European Mammals Red List for 2009](https://data.europa.eu/euodp/en/data/dataset?res_format=CSV) from EU is being used. -To build use `../gradlew assemble` or `./build.sh`. +To build use `../gradlew build` or `./build.sh`. Now you can run artifact directly diff --git a/samples/curl/README.md b/samples/curl/README.md index 632e68216a0..7e7eb4334c6 100644 --- a/samples/curl/README.md +++ b/samples/curl/README.md @@ -4,7 +4,7 @@ This example shows how to communicate with libcurl, HTTP/HTTPS/FTP/etc client li depend on an artifact published in a maven repository. The sample depends on a library built by [libcurl sample](../libcurl) so you need to run it first. -To build use `../gradlew assemble`. +To build use `../gradlew build`. Now you can run the client directly diff --git a/samples/gitchurn/README.md b/samples/gitchurn/README.md index 941e02cecd9..42e05f05e5d 100644 --- a/samples/gitchurn/README.md +++ b/samples/gitchurn/README.md @@ -3,7 +3,7 @@ This example shows how one could perform statistics on Git repository. libgit2 is required for this to work (`apt-get install libgit2-dev`). -To build use `../gradlew assemble` or `./build.sh`. +To build use `../gradlew build` or `./build.sh`. Now you can run the program directly diff --git a/samples/globalState/README.md b/samples/globalState/README.md index fd8614482e7..52083045cce 100644 --- a/samples/globalState/README.md +++ b/samples/globalState/README.md @@ -2,7 +2,7 @@ This example shows how one could implement global shared state using interop mechanisms. -To build use `../gradlew assemble`. +To build use `../gradlew build`. To run use `./build/exe/main/release//globalState.kexe`. diff --git a/samples/gtk/README.md b/samples/gtk/README.md index f7dc2947f3a..c472bfaf8f6 100644 --- a/samples/gtk/README.md +++ b/samples/gtk/README.md @@ -3,7 +3,7 @@ This example shows how one may use _Kotlin/Native_ to build GUI applications with the GTK toolkit. -To build use `../gradlew assemble` or `./build.sh [-I=/include/path]`. +To build use `../gradlew build` or `./build.sh [-I=/include/path]`. Do not forget to install GTK3. See bellow. diff --git a/samples/libcurl/README.md b/samples/libcurl/README.md index 103dd69391b..16f32b87482 100644 --- a/samples/libcurl/README.md +++ b/samples/libcurl/README.md @@ -4,7 +4,7 @@ This example shows how to build and publish an interop library to communicate wi HTTP/HTTPS/FTP/etc client library. Debian-like distros may need to `apt-get install libcurl4-openssl-dev`. -To build use `../gradlew assemble` +To build use `../gradlew build` To publish the library into a local repo use `../gradlew publish` diff --git a/samples/nonBlockingEchoServer/README.md b/samples/nonBlockingEchoServer/README.md index bdcdbfb678b..0e14f5150ad 100644 --- a/samples/nonBlockingEchoServer/README.md +++ b/samples/nonBlockingEchoServer/README.md @@ -7,7 +7,7 @@ are being suspended and resumed whenever relevant. Thus, while server can process multiple connections concurrently, each individual connection handler is written in simple linear manner. -To build use `../gradlew assemble` or `./build.sh`. +To build use `../gradlew build` or `./build.sh`. Now you can run the server diff --git a/samples/opengl/README.md b/samples/opengl/README.md index 3e9bac9d8d5..e2940a8168d 100644 --- a/samples/opengl/README.md +++ b/samples/opengl/README.md @@ -3,7 +3,7 @@ This example shows interaction with OpenGL library, to render classical 3D test model. Linux build requires `apt-get install freeglut3-dev` or similar, MacOS shall work as is. -To build use `../gradlew assemble` or `./build.sh`. +To build use `../gradlew build` or `./build.sh`. Now you can run the application diff --git a/samples/tetris/README.md b/samples/tetris/README.md index 38237d4a7b2..f9951cc7584 100644 --- a/samples/tetris/README.md +++ b/samples/tetris/README.md @@ -13,7 +13,7 @@ use `apt-get install libsdl2-dev`. For Windows - `pacman -S mingw-w64-x86_64-SDL2` in MinGW64 console, if you do not have MSYS2-MinGW64 installed - install it first as described in http://www.msys2.org -To build Tetris application for your host platform (Mac or Linux) use `../gradlew assemble`. +To build Tetris application for your host platform (Mac or Linux) use `../gradlew build`. Aleternatively for Mac and Linux `./build.sh`. diff --git a/samples/videoplayer/README.md b/samples/videoplayer/README.md index 6e4c771fd71..d1660f1e19e 100644 --- a/samples/videoplayer/README.md +++ b/samples/videoplayer/README.md @@ -11,7 +11,7 @@ ffmpeg and SDL2 is needed for that to work, i.e. apt install libsdl2-dev pacman -S mingw-w64-x86_64-SDL2 mingw-w64-x86_64-ffmpeg -To build use `../gradlew assemble`. +To build use `../gradlew build`. To run use `./build/exe/main/release//Player.kexe file.mp4`. diff --git a/samples/win32/README.md b/samples/win32/README.md index a7b86d6242f..49240b21c39 100644 --- a/samples/win32/README.md +++ b/samples/win32/README.md @@ -1,5 +1,5 @@ # WIN32 Hello World -To build use `..\gradlew assemble` or `build.bat`. +To build use `..\gradlew build` or `build.bat`. To run use `.\build\exe\main\release\MessageBox.exe`. diff --git a/samples/workers/README.md b/samples/workers/README.md index 85ab38fceee..82e1969f9fa 100644 --- a/samples/workers/README.md +++ b/samples/workers/README.md @@ -34,6 +34,6 @@ Then it continues execution, and waits on future objects encapsulating the computation results. Afterwards, worker execution termination is requested with the `requestTermination()` operation. -To build use `./build.sh` or `./gradlew assemble` +To build use `./build.sh` or `./gradlew build` To run use `./build/exe/main/release/workers.kexe`