-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
避免在多个项目中重复编译同一个HX文件 #6
Comments
Original Comment By: 博 杨 |
暂时以以下方法解决: 在jsonStream的build.sbt文件加入以下内容
在entity的
可以通过编译 以进行测试 Original Comment By: xiuyu zhang |
Original Comment By: 博 杨 |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
如果项目B依赖于项目A,那么在编译项目A时,应该导出一个类列表文件
classes-of-project-A.list
,然后在编译项目B时,指定haxe --macro excludeFile("classes-of-project-A.list")
以排除已经在项目A中编译过的类。The text was updated successfully, but these errors were encountered: