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);