Skip to content

Commit

Permalink
djinni-support-lib: fix CMake path
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Nov 6, 2023
1 parent 151a2ea commit 3033530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/djinni-support-lib/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def generate(self):
tc.variables["DJINNI_WITH_JNI"] = self._jni_support
if self._jni_support:
tc.variables["JAVA_AWT_LIBRARY"] = "NotNeeded"
tc.variables["JAVA_AWT_INCLUDE_PATH"] = unix_path(self, self.source_folder)
tc.variables["JAVA_AWT_INCLUDE_PATH"] = self.source_folder.replace("\\", "/")
tc.generate()
tc = CMakeDeps(self)
tc.generate()
Expand Down

0 comments on commit 3033530

Please sign in to comment.