-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c6029c
commit 2991569
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
@echo off | ||
REM | ||
REM PATH setup for Windows | ||
REM | ||
REM Configure this file for you own system using the following steps | ||
REM 1. If you have not already installed the Java Development Kit (JDK) | ||
REM or Java Runtime Environment (JRE) on your system, download and | ||
REM install your preferred version. Unless you have special requirements, | ||
REM I recommend taking a recent version. Tinfour requires | ||
REM Java version 8 or later. | ||
REM 2. Locate the Java installation location (also called the "installation path") | ||
REM 3. Modify the Windows commands shown below for JAVA_HOME and PATH to specify | ||
REM the correct settings for your computer's installation. Note | ||
REM that the setting for PATH below uses the "bin" folder, | ||
REM but that the JAVA_HOME does not include the "bin". | ||
REM | ||
REM If you wish, you may also set up this file to change your working | ||
REM directory to your folder by including the Windows "change directory" command | ||
REM Remove the comment introducer from the following command and modify it as appropriate. | ||
REM cd c:\Users\%USERNAME%\Documents | ||
REM | ||
REM If you wish to compile Tinfour and related software, you may also include | ||
REM the specifications for Maven in your PATH. To do so, locate the Maven | ||
REM installation path and include the path to the Mava "bin" folder in the "set PATH" line. | ||
REM Note that compiling Java code requires the use of the JDK. | ||
REM | ||
REM On many Windows systems, a version of Java may already be installed. | ||
REM If so these settings may be unnecessary | ||
|
||
|
||
|
||
set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_91 | ||
set PATH=C:\Program Files\Java\jdk1.8.0_91\bin;%PATH% | ||
java -version |