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:
parent
a56a53e72d
commit
c6965d5cb2
|
@ -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}")
|
||||
|
|
Loading…
Reference in a new issue