From aafbfc9a9f23acd42b5270640329f211f7947fe0 Mon Sep 17 00:00:00 2001 From: Patrik Dufresne Date: Fri, 8 Feb 2019 13:09:21 -0500 Subject: [PATCH] Update README --- README | 10 ---------- README.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 10 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index e7d79cd..0000000 --- a/README +++ /dev/null @@ -1,10 +0,0 @@ -= cbc4j = - -== Compile == -This section describe how to configure a linux debian computer to compile the -cbc4j project. A special configuration is required to cross-compile for -windows. - -{{{ -sudo apt-get install default-jdk maven swig build-essential gcc-mingw-w64 mingw-w64 g++-multilib -}}} diff --git a/README.md b/README.md new file mode 100644 index 0000000..7339b77 --- /dev/null +++ b/README.md @@ -0,0 +1,59 @@ +[![Build](http://git.patrikdufresne.com/pdsl/cbc4j/badges/master/build.svg)](http://git.patrikdufresne.com/pdsl/cbc4j) + +# cbc4j + +This project provide a pre-compiled version of [cbc](https://www.coin-or.org/) +for Java. This library is working on linux and windows. + +## Compile +This section describe how to configure a linux debian computer to compile the +cbc4j project. A special configuration is required to cross-compile for +windows. + + sudo apt-get install default-jdk maven swig build-essential gcc-mingw-w64 mingw-w64 g++-multilib + mvn -Drevision=1.0-SNAPSHOT clean install + +## Usage +To make use of this library, you must add the following to your maven project. + + + + patrikdufresne + http://nexus.patrikdufresne.com/content/groups/public/ + + + + ... + + + linux_x86_64 + + + linux + amd64 + + + + + com.patrikdufresne.cbc4j + cbc4j-linux-x86_64 + 1.1 + + + + + win_x86 + + + windows + amd64 + + + + + com.patrikdufresne.cbc4j + cbc4j-win-x86_64 + 1.1 + + + -- GitLab