Skip to content

Commit

Permalink
Define CMAKE_INSTALL_LIBDIR to install .dll in bin/ next to .exe
Browse files Browse the repository at this point in the history
  • Loading branch information
jdblischak committed Nov 14, 2023
1 parent 61af8ff commit 9c42827
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ci/nightly/build-libtiledbvcf.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ cmake -S TileDB-VCF\libtiledbvcf -B build-libtiledbvcf ^
-D CMAKE_BUILD_TYPE=Release ^
-D CMAKE_INSTALL_PREFIX:PATH=%GITHUB_WORKSPACE%\install\ ^
-D OVERRIDE_INSTALL_PREFIX=OFF ^
-D TILEDB_WERROR=OFF
-D TILEDB_WERROR=OFF ^
-D CMAKE_INSTALL_LIBDIR=bin
if %ERRORLEVEL% neq 0 exit 1

cmake --build build-libtiledbvcf -j2 --config Release
Expand All @@ -15,5 +16,7 @@ if %ERRORLEVEL% neq 0 exit 1
cmake --build build-libtiledbvcf --config Release --target install-libtiledbvcf
if %ERRORLEVEL% neq 0 exit 1

rem %GITHUB_WORKSPACE%\install\bin\tiledbvcf version
dir %GITHUB_WORKSPACE%\install\

%GITHUB_WORKSPACE%\install\bin\tiledbvcf version
rem if %ERRORLEVEL% neq 0 exit 1

0 comments on commit 9c42827

Please sign in to comment.