From 187007849b00fb11be7a7e172bbcf94cbda24793 Mon Sep 17 00:00:00 2001 From: Marco Hutter Date: Mon, 9 May 2016 18:57:58 +0200 Subject: [PATCH] Updated version strings in code and CMake file --- CMakeLists.txt | 2 +- src/main/java/org/jocl/CL.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd48eb8..8f0107c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ add_subdirectory(../JOCLCommon # Set the variables that are later used to build the name of the native # library, e.g. "JOCL-0_2_0-windows-x86_64.dll" -set(JOCL_VERSION "0_2_0") +set(JOCL_VERSION "2_0_0") if(ANDROID) set(JOCL_TARGET_OS "android") diff --git a/src/main/java/org/jocl/CL.java b/src/main/java/org/jocl/CL.java index 2c17d0a..39aad61 100644 --- a/src/main/java/org/jocl/CL.java +++ b/src/main/java/org/jocl/CL.java @@ -58,7 +58,7 @@ static void loadNativeLibrary() { if (!nativeLibraryLoaded) { - String versionString = "0_2_0"; + String versionString = "2_0_0"; String libraryBaseName = "JOCL_" + versionString; String libraryName = LibUtils.createPlatformLibraryName(libraryBaseName);