Very minor doc updates

This commit is contained in:
Nikolay Igotti
2017-03-28 22:22:14 +03:00
parent c1d9dc1cbb
commit 2d51a7bab7
3 changed files with 4 additions and 2 deletions
+1
View File
@@ -1,6 +1,7 @@
# GIT frequency analyzer
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 `./build.sh` script without arguments (or specify `TARGET` variable if cross-compiling).
+2 -1
View File
@@ -1,6 +1,7 @@
# OpenGL application
This example shows interaction with OpenGL library, to render classical 3D test model.
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 `./build.sh` script without arguments (or specify `TARGET` variable if cross-compiling).
+1 -1
View File
@@ -23,4 +23,4 @@ COMPILER_ARGS=${!var} # add -opt for an optimized build.
interop -def:$DIR/opengl.def -target:$TARGET || exit 1
# OpenGL stubs are rather big, so we need more heap space.
konanc -J-Xmx2G -target $TARGET opengl $DIR/OpenGlTeapot.kt -nativelibrary openglstubs.bc -linkerArgs "$LINKER_ARGS" -o OpenGlTeapot.kexe || exit 1
konanc -J-Xmx3G -target $TARGET opengl $DIR/OpenGlTeapot.kt -nativelibrary openglstubs.bc -linkerArgs "$LINKER_ARGS" -o OpenGlTeapot.kexe || exit 1