From 7e062aeff699b06d02c79d328a42b35306a558cf Mon Sep 17 00:00:00 2001 From: Driss Lahlou Date: Thu, 21 Jul 2016 11:32:04 +0200 Subject: [PATCH] merge README files --- tools/README.cc | 18 ------------------ tools/README.dotnet | 37 ------------------------------------- tools/README.java | 26 -------------------------- 3 files changed, 81 deletions(-) delete mode 100644 tools/README.cc delete mode 100644 tools/README.dotnet delete mode 100644 tools/README.java diff --git a/tools/README.cc b/tools/README.cc deleted file mode 100644 index 4a66eddceec..00000000000 --- a/tools/README.cc +++ /dev/null @@ -1,18 +0,0 @@ -This file describes how to install the or-tools C++ binary archive. - -OR-Tools is located at https://developers.google.com/optimization - -These modules have been tested under: - - ubuntu 12.04 and up (32 and 64 bit). - - Mac OS X Lion and up with xcode 4.x (64 bit). - - Microsoft Visual studio 2012 and 2013 (32 and 64 bit). - -Upon decompressing the archive, you will get the following structure: - -or-tools/ - LICENSE-2.0.txt <- Apache License - README <- This file - examples/ <- C++ examples - lib/ <- directory containing the ortools complete library - include/ <- all include files - Makefile/ <- Main makefile diff --git a/tools/README.dotnet b/tools/README.dotnet deleted file mode 100644 index b468eb0f935..00000000000 --- a/tools/README.dotnet +++ /dev/null @@ -1,37 +0,0 @@ -This file describes how to use the or-tools .NET binary archive. - -OR-Tools is located at https://developers.google.com/optimization - -This module has been tested under: - - ubuntu 10.04 and up (32 and 64 bit). - - Mac OS X Lion with xcode 4.x (64 bit). - - Microsoft Windows with Visual Studio 2012 and 2013 (32 and 64 bit). - -Upon decompressing the archive, you will get the following structure: - -or-tools/ - LICENSE-2.0.txt <- Apache License - README <- This file - data/ <- Data for the examples - examples/ <- C# examples - bin/ <- Directory containing assemblies and native libraries - -Running the examples will involve compiling them, then running them. - -Let's compile examples/csflow.cs and run it. - -on windows 32 bit: - csc /target:exe /out:csflow.exe /platform:x86 /lib:bin /r:Google.OrTools.dll examples\csflow.cs - csflow.exe - -on windows 64 bit: - csc /target:exe /out:csflow.exe /platform:x64 /lib:bin /r:Google.OrTools.dll examples\csflow.cs - csflow.exe - -On linux (mono comes from the distribution, on ubuntu at least) - mono-csc /target:exe /out:csflow.exe /platform:anycpu /lib:bin /r:Google.OrTools.dll examples/csflow.cs - MONO_PATH=bin mono csflow.exe - -On Mac OS X (mono is compiled under dependencies/install) - dependencies\install\bin\mcs /target:exe /out:csflow.exe /platform:anycpu /lib:bin /r:Google.OrTools.dll examples/csflow.cs - MONO_PATH=bin dependencies\install\bin\mono csflow.exe diff --git a/tools/README.java b/tools/README.java deleted file mode 100644 index ab837dc37d9..00000000000 --- a/tools/README.java +++ /dev/null @@ -1,26 +0,0 @@ -This file describes how to use the or-tools java binary archive. - -OR-Tools is located at https://developers.google.com/optimization - -This module has been tested under: - - ubuntu 10.04 and up (32 and 64 bit). - - Mac OS X Lion with xcode 4.x (64 bit). - - Microsoft Windows with Visual Studio 2012 and 2013 (32 and 64 bit). - -Upon decompressing the archive, you will get the following structure: - -or-tools/ - LICENSE-2.0.txt <- Apache License - README <- This file - data/ <- Data for the examples - examples/ <- Java examples - lib/ <- Directory containing jar files and native libraries - objs/ <- Directory that will contain compiled classes - -Running the examples will involve compiling them, then running them. - -Let's compile and run -examples/com/google/ortools/samples/RabbitsPheasants.java - -javac -d objs -cp lib/com.google.ortools.jar examples/com/google/ortools/samples/RabbitsPheasants.java -java -Djava.library.path=lib -cp objs:lib/com.google.ortools.jar com.google.ortools.samples.RabbitsPheasants