allow sbt runMain from sbt subproject

This commit is contained in:
abejgonzalez
2019-03-08 18:20:42 -08:00
parent f45369365b
commit 30ef609fb8
2 changed files with 3 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
# MODEL = the top level module of the project (normally the harness)
# CONFIG = the configuration class to give the parameters for the project
# CFG_PROJECT = the scala package to find the CONFIG class
# SBT_PROJECT = the SBT project that you should find the Generator class in
# TB = wrapper over the TestHarness needed to simulate in VCS
# TOP = top level module of the project (normally the module instantiated by the harness)
#########################################################################################
@@ -16,6 +17,7 @@ PROJECT ?= example
MODEL ?= TestHarness
CONFIG ?= DefaultExampleConfig
CFG_PROJECT ?= $(PROJECT)
SBT_PROJECT ?= $(PROJECT)
TB ?= TestDriver
TOP ?= ExampleTop