3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

[CMake] Add version to `com.microsoft.z3.jar`. On Linux systems

the ``.jar`` file is created as ``com.microsoft.z3-4.4.2.0.jar``
and a symlink named ``com.microsoft.z3.jar`` is created which points
to it in the build and install directory.
This commit is contained in:
Dan Liew 2016-04-18 11:31:09 +01:00
parent 8f69728703
commit a1e8311844

View file

@ -200,12 +200,12 @@ add_custom_target(build_z3_java_bindings
)
# Rule to build ``com.microsoft.z3.jar``
# TODO: Add version
# TODO: Should we set ``CMAKE_JNI_TARGET`` to ``TRUE``?
add_jar(z3JavaJar
SOURCES ${Z3_JAVA_JAR_SOURCE_FILES_FULL_PATH}
OUTPUT_NAME ${Z3_JAVA_PACKAGE_NAME}
OUTPUT_DIR "${CMAKE_BINARY_DIR}"
VERSION "${Z3_VERSION}"
)
###############################################################################