diff options
author | Petre Eftime <[email protected]> | 2016-05-19 14:02:18 +0300 |
---|---|---|
committer | Petre Eftime <[email protected]> | 2016-05-19 14:02:31 +0300 |
commit | 59246942c5918df5763122691c554fc0fb0ce8e8 (patch) | |
tree | d39eac6b1407d791989b34d95ca34768f31a6f47 /java/CMakeLists.txt | |
parent | 68a5134e996de3958f06bef906f0b1f5a9e3c2bd (diff) |
java: Fix Cmake install path for jar
Signed-off-by: Petre Eftime <[email protected]>
Diffstat (limited to 'java/CMakeLists.txt')
-rw-r--r-- | java/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/CMakeLists.txt b/java/CMakeLists.txt index 0a41b22a..6288cf59 100644 --- a/java/CMakeLists.txt +++ b/java/CMakeLists.txt @@ -43,6 +43,6 @@ add_custom_command (TARGET tinybjar ) set(JNI_HEADER_PATH "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_FILES_DIRECTORY}/tinybjar.dir/jni") -install_jar (tinybjar DESTINATION ${CMAKE_INSTALL_LIBDIR}/../lib/java) +install (FILES ${CMAKE_CURRENT_BINARY_DIR}/tinyb.jar DESTINATION ${CMAKE_INSTALL_LIBDIR}/../lib/java) add_subdirectory (jni) |