Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

Commit

Permalink
Small fixes (#442)
Browse files Browse the repository at this point in the history
* Fix gradle plugin readme

* samples: Add brew paths
  • Loading branch information
ilmat192 committed Apr 4, 2017
1 parent 960514b commit 8c4468f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GRADLE_PLUGIN.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ details).

konanArtifacts {
foo {
inputFiles = fileTree('foo/src')
inputFiles fileTree('foo/src')
}

bar {
inputFiles = fileTree('bar/src')
target = iphone
inputFiles fileTree('bar/src')
target iphone
}
}

Expand Down
3 changes: 3 additions & 0 deletions samples/gitchurn/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
PATH=../../dist/bin:../../bin:$PATH
DIR=.

# Uncomment flags if your paths differ from these ones.
CFLAGS_macbook=-I/opt/local/include
#CFLAGS_macbook=-I/usr/local/include
CFLAGS_linux=-I/usr/include
LINKER_ARGS_macbook="-L/opt/local/lib -lgit2"
#LINKER_ARGS_macbook="-L/usr/local/lib -lgit2"
LINKER_ARGS_linux="-L/usr/lib/x86_64-linux-gnu -lgit2"

if [ x$TARGET == x ]; then
Expand Down
3 changes: 3 additions & 0 deletions samples/tetris/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ DEPS=$(dirname `type -p konanc`)/../dependencies
CFLAGS_macbook=-I$HOME/Library/Frameworks/SDL2.framework/Headers
LINKER_ARGS_macbook="-F $HOME/Library/Frameworks -framework SDL2"
COMPILER_ARGS_macbook=
# Uncomment this if your path to SDL differs from the one above.
#CFLAGS_macbook=-I/opt/local/include/SDL2
#LINKER_ARGS_macbook="-L/opt/local/lib -lSDL2"
#CFLAGS_macbook=-I/usr/local/include/SDL2
#LINKER_ARGS_macbook="-L/usr/local/lib -lSDL2"

CFLAGS_linux=-I/usr/include/SDL2
LINKER_ARGS_linux="-L/usr/lib/x86_64-linux-gnu -lSDL2"
Expand Down

0 comments on commit 8c4468f

Please sign in to comment.