X Tutup
Skip to content

Commit 6ee314d

Browse files
committed
JavaCL: fix compilation of maven generator.
1 parent c9d41b1 commit 6ee314d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MavenPlugin/src/main/java/com/nativelibs4java/opencl/generator/JavaCLGeneratorMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public void generateAll(File root, File javaOutDir, File openCLOutDir) throws IO
130130
if (!javaOutDir.exists())
131131
javaOutDir.mkdirs();
132132
config.outputDir = javaOutDir;
133-
config.addSourceFile(file, null, false, true);
133+
config.addSourceFile(file, null, false, true, true);
134134
config.addRootDir(root);
135135

136136
final String fileName = file.getName();

0 commit comments

Comments
 (0)
X Tutup