Skip to content

Commit

Permalink
Updated version strings in code and CMake file
Browse files Browse the repository at this point in the history
  • Loading branch information
gpu committed May 9, 2016
1 parent 9cfc833 commit 1870078
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jocl/CL.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1870078

Please sign in to comment.