File tree Expand file tree Collapse file tree 4 files changed +28
-9
lines changed
src/test/java/io/tiledb/java/api Expand file tree Collapse file tree 4 files changed +28
-9
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,25 @@ target_link_libraries(tiledbjni
108
108
${JAVA_JVM_LIBRARY}
109
109
)
110
110
111
+ if (WIN32 )
112
+ get_target_property (LIBMAGIC_LIB libmagic IMPORTED_LOCATION )
113
+ get_filename_component (LIBMAGIC_LIB_PATH ${LIBMAGIC_LIB} DIRECTORY )
114
+ find_library (PCRE2_POSIX pcre2-posix REQUIRED PATHS ${LIBMAGIC_LIB_PATH} )
115
+ find_library (PCRE2_8 pcre2-8 REQUIRED PATHS ${LIBMAGIC_LIB_PATH} )
116
+ target_link_libraries (tiledbjni
117
+ PRIVATE
118
+ ${PCRE2_POSIX}
119
+ ${PCRE2_8}
120
+ WebServices
121
+ Winhttp
122
+ Wininet
123
+ Userenv
124
+ Version
125
+ Secur32
126
+ Ncrypt
127
+ )
128
+ endif ()
129
+
111
130
if (TARGET TileDB::tiledb_static )
112
131
target_link_libraries (tiledbjni
113
132
PRIVATE
Original file line number Diff line number Diff line change @@ -48,14 +48,14 @@ if (NOT TILEDB_FOUND)
48
48
# Try to download prebuilt artifacts unless the user specifies to build from source
49
49
if (DOWNLOAD_TILEDB_PREBUILT )
50
50
if (WIN32 ) # Windows
51
- SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0 /tiledb-windows-x86_64-2.17.0-93c173d .zip" )
52
- SET (DOWNLOAD_SHA1 "d43589b22de95d45b40de9918d105a6174ec352e " )
51
+ SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.1 /tiledb-windows-x86_64-2.17.1-7c8c73b .zip" )
52
+ SET (DOWNLOAD_SHA1 "c3757a9205299a4184bd4de7621ff9f5118f14ca " )
53
53
elseif (APPLE ) # macOS
54
- SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0 /tiledb-macos-x86_64-2.17.0-93c173d .tar.gz" )
55
- SET (DOWNLOAD_SHA1 "9a232015cbf09c5bd37375537cef80a382e1ffa4 " )
54
+ SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.1 /tiledb-macos-x86_64-2.17.1-7c8c73b .tar.gz" )
55
+ SET (DOWNLOAD_SHA1 "998c099297c0441af40729634642bd358c962da6 " )
56
56
else () # Linux
57
- SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.0 /tiledb-linux-x86_64-2.17.0-93c173d .tar.gz" )
58
- SET (DOWNLOAD_SHA1 "5c04c07a73d3fe48a9ba8f3ad8af5e1912a39ce8 " )
57
+ SET (DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.17.1 /tiledb-linux-x86_64-2.17.1-7c8c73b .tar.gz" )
58
+ SET (DOWNLOAD_SHA1 "c01bf6898ef5bd108d49b378aa30aadfc3131b75 " )
59
59
endif ()
60
60
61
61
ExternalProject_Add (ep_tiledb
Original file line number Diff line number Diff line change 1
1
TILEDB_GIT_REPOSITORY =https://github.com/TileDB-Inc/TileDB
2
- TILEDB_GIT_TAG =2.17.0
2
+ TILEDB_GIT_TAG =2.17.1
3
3
TILEDB_VERBOSE =ON
4
4
TILEDB_S3 =ON
5
5
TILEDB_AZURE =OFF
6
6
TILEDB_HDFS =OFF
7
7
TILEDB_SERIALIZATION =OFF
8
- FORCE_BUILD_TILEDB =ON
8
+ FORCE_BUILD_TILEDB =OFF
9
9
DOWNLOAD_TILEDB_PREBUILT =ON
10
10
TILEDB_SKIP_S3AWSSDK_DIR_LENGTH_CHECK =ON
Original file line number Diff line number Diff line change @@ -35,6 +35,6 @@ public void testVersion() {
35
35
System .out .println (version );
36
36
Assert .assertTrue (version .getMajor () == 2 );
37
37
Assert .assertTrue (version .getMinor () == 17 );
38
- Assert .assertTrue (version .getRevision () == 0 );
38
+ Assert .assertTrue (version .getRevision () == 1 );
39
39
}
40
40
}
You can’t perform that action at this time.
0 commit comments