fix classpaths in windows command files

This commit is contained in:
Irmen de Jong 2019-05-06 17:14:13 +02:00
parent 262e0bd6b9
commit 6ce1277438
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
@echo off
set PROG8CLASSPATH=./out/production/compiler_main;./out/production/parser_main
set PROG8CLASSPATH=./compiler/build/classes/kotlin/main;./compiler/build/resources/main;./parser/build/classes/java/main
set KOTLINPATH=%USERPROFILE%/.IdeaIC2019.1/config/plugins/Kotlin
set LIBJARS=%KOTLINPATH%/lib/kotlin-stdlib.jar;%KOTLINPATH%/lib/kotlin-reflect.jar;./parser/antlr/lib/antlr-runtime-4.7.2.jar

View File

@ -1,6 +1,6 @@
@echo off
set PROG8CLASSPATH=./out/production/compiler_main
set PROG8CLASSPATH=./compiler/build/classes/kotlin/main;./compiler/build/resources/main
set KOTLINPATH=%USERPROFILE%/.IdeaIC2019.1/config/plugins/Kotlin
set LIBJARS=%KOTLINPATH%/lib/kotlin-stdlib.jar;%KOTLINPATH%/lib/kotlin-reflect.jar