节约:生成python在SBT中不生成python文件

节约:生成python在SBT中不生成python文件,sbt,thrift,Sbt,Thrift,我使用0.6,在构建定义中有以下内容: thriftPythonEnabled := true, thriftPythonOutputDir <<= sourceDirectory(_ / "python") thriftPythonEnabled:=true, thriftPythonOutputDir您的设置中缺少Thriftconfig 尝试以下方法(使用SBT0.12语法): thriftPythonEnabled in Thrift:=true, thriftPython

我使用0.6,在构建定义中有以下内容:

thriftPythonEnabled := true,
thriftPythonOutputDir <<= sourceDirectory(_ / "python")
thriftPythonEnabled:=true,

thriftPythonOutputDir您的设置中缺少
Thrift
config

尝试以下方法(使用SBT0.12语法):

thriftPythonEnabled in Thrift:=true,
thriftPythonOutputDir在thriftPythonOutputDir中可能是的副本
thriftPythonEnabled in Thrift := true,
thriftPythonOutputDir in Thrift <<= sourceDirectory(_ / "python")