Skip to content

Commit 1467cad

Browse files
committed
Move code to bindgen dir
1 parent 88f673e commit 1467cad

31 files changed

+13
-13
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Important to note is that all contributors must have signed the [Scala CLA].
1414
Build the `scalaBindgen` tool:
1515

1616
```sh
17-
mkdir target
18-
cd target
17+
mkdir bindgen/target
18+
cd bindgen/target
1919
cmake ..
2020
make
2121

2222
# Alternatively rerun on change
23-
watchman-make -p '*.cpp' '*.h' --run 'make -C target'
23+
watchman-make -p '*.cpp' '*.h' --run 'make -C bindgen/target'
2424
```
2525

2626
In another terminal, run the test suite:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Building this tool requires [CMake], [LLVM] and [Clang]. See the [Scala
2020
Native setup guide] for instructions on installing the dependencies.
2121

2222
```sh
23-
mkdir -p target
24-
cd target
23+
mkdir -p bindgen/target
24+
cd bindgen/target
2525
cmake ..
2626
make
2727
./scala-native-bindgen /usr/include/ctype.h -name ctype --
@@ -35,7 +35,7 @@ docker-compose build ubuntu-18.04-llvm-6.0
3535
# Build the bindgen tool and run the tests.
3636
docker-compose run --rm ubuntu-18.04-llvm-6.0
3737
# Run the bindgen tool inside the container.
38-
docker-compose run --rm ubuntu-18.04-llvm-6.0 target/scala-native-bindgen -name union tests/samples/Union.h --
38+
docker-compose run --rm ubuntu-18.04-llvm-6.0 bindgen/target/scala-native-bindgen -name union tests/samples/Union.h --
3939
```
4040

4141
[CMake]: https://cmake.org/
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)