Skip to content

Commit

Permalink
* Emphasize the need to install separately the parent pom.xml file…
Browse files Browse the repository at this point in the history
… (issue #42)

 * Make CMake configurable via `CMAKE` variable in `cppbuild.sh` (pull #41)
  • Loading branch information
saudet committed Mar 19, 2015
1 parent d2fda42 commit e05f03f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

* Emphasize the need to install separately the parent `pom.xml` file ([issue #42](https://github.com/bytedeco/javacpp-presets/issues/42))
* Make CMake configurable via `CMAKE` variable in `cppbuild.sh` ([pull #41](https://github.com/bytedeco/javacpp-presets/pull/41))
* Add presets for Caffe ([issue #34](https://github.com/bytedeco/javacpp-presets/issues/34))
* Let `createBuffer()` return `UByteIndexer` and `UShortIndexer` when appropriate for unsigned data types
* Remove the need to set manually the `platform.dependency` system property for downstream modules without a `cppbuild.sh` file
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ Each child module in turn relies on its corresponding native libraries being alr

Once everything installed and configured, simply execute
```bash
$ mvn install --projects opencv,ffmpeg,flycapture,libdc1394,libfreenect,videoinput,artoolkitplus,etc.
$ mvn install --projects .,opencv,ffmpeg,flycapture,libdc1394,libfreenect,videoinput,artoolkitplus,etc.
```
inside the directory containing the parent `pom.xml` file, by specifying only the desired child modules in the command. Please refer to the comments inside the `pom.xml` file for further details.
inside the directory containing the parent `pom.xml` file, by specifying only the desired child modules in the command, but **without the leading period "." in the comma-separated list of projects, the parent `poml.xml` file itself might not get installed.** Please refer to the comments inside the `pom.xml` file for further details.


CPPBuild Scripts
Expand Down

0 comments on commit e05f03f

Please sign in to comment.