-
Notifications
You must be signed in to change notification settings - Fork 6
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
Add java source output directory settings for frege compiler #30
Comments
For what reason? |
One reason is for future possible frege m2e integration. It's common thing to do when using build tools like maven. Output the intermediate processed source files, resource files, etc. to like |
I see. But the java Files are completely ephemeral and not needed anymore (except to look at the generated code, which is valuable at least for me, but could be helpful as well for someone getting java compilation errors because of wrong native definitions). Hence I'd rather just make a check box "Keep Java Files?" in the Frege Settings.And if this is false, just remove the files in the builder after successful compilation. |
Thank You for great work! I want to call Frege generated code from Java. Usually solution is to add additional source directory to Maven pom.xml. Next I tried pure java project and again both Frege code and java code in the same project. What I am doing wrong? Thank You |
Still default compiles frege source code to java source code to
bin
folder. But add setting to project properties to change that directory so we can separate java source code file and java bytecode file.The text was updated successfully, but these errors were encountered: