From 6ce1277438565b6c98325dc8857f9f5bc9646d39 Mon Sep 17 00:00:00 2001
From: Irmen de Jong <irmen@razorvine.net>
Date: Mon, 6 May 2019 17:14:13 +0200
Subject: [PATCH] fix classpaths in windows command files

---
 p8compile.cmd | 2 +-
 p8vm.cmd      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/p8compile.cmd b/p8compile.cmd
index 71123cb36..ac53acce8 100644
--- a/p8compile.cmd
+++ b/p8compile.cmd
@@ -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
 
diff --git a/p8vm.cmd b/p8vm.cmd
index 4b930d41d..fa76c0901 100644
--- a/p8vm.cmd
+++ b/p8vm.cmd
@@ -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