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

[CMake] Try to fix the Windows build when building the Java bindings.

On Windows the ``z3java`` target is not a ``LIBRARY`` target so just
drop the ``LIBRARY`` keyword here.
This commit is contained in:
Dan Liew 2016-04-18 14:07:09 +01:00
parent a56a53e72d
commit c6965d5cb2

View file

@ -229,9 +229,7 @@ if (INSTALL_JAVA_BINDINGS)
PATH
"Directory to install Z3 Java JNI bridge library relative to install prefix"
)
install(TARGETS z3java
LIBRARY DESTINATION "${Z3_JAVA_JNI_LIB_INSTALLDIR}"
)
install(TARGETS z3java DESTINATION "${Z3_JAVA_JNI_LIB_INSTALLDIR}")
# Note: Don't use ``DESTINATION`` here as the version of ``UseJava.cmake`` shipped
# with CMake 2.8.12.2 handles that incorrectly.
install_jar(z3JavaJar "${Z3_JAVA_JAR_INSTALLDIR}")