summaryrefslogtreecommitdiffstats
path: root/pki/cmake/Modules/UseJava.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'pki/cmake/Modules/UseJava.cmake')
-rw-r--r--pki/cmake/Modules/UseJava.cmake26
1 files changed, 26 insertions, 0 deletions
diff --git a/pki/cmake/Modules/UseJava.cmake b/pki/cmake/Modules/UseJava.cmake
new file mode 100644
index 000000000..a5a212fd1
--- /dev/null
+++ b/pki/cmake/Modules/UseJava.cmake
@@ -0,0 +1,26 @@
+#=============================================================================
+# Copyright 2002-2009 Kitware, Inc.
+#
+# Distributed under the OSI-approved BSD License (the "License");
+# see accompanying file Copyright.txt for details.
+#
+# This software is distributed WITHOUT ANY WARRANTY; without even the
+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+# See the License for more information.
+#=============================================================================
+# (To distributed this file outside of CMake, substitute the full
+# License text for the above reference.)
+
+function(ADD_JNI_HEADERS _CLASSPATH _CLASSNAMES _HEADERS _DEPENDS)
+ add_custom_command(
+ OUTPUT
+ ${_HEADERS}
+ COMMAND ${JAVA_HEADER}
+ -classpath ${_CLASSPATH}
+ -jni
+ -d ${CMAKE_CURRENT_BINARY_DIR}
+ ${_CLASSNAMES}
+ DEPENDS
+ ${_DEPENDS}
+ )
+endfunction(ADD_JNI_HEADERS)