Skip to content

Commit

Permalink
Issue #27: using double quotes when passing envvar to cmake config
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhoshkun committed Apr 8, 2019
1 parent 0e3d2d9 commit 5fa37c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ build-against-epiphan-sdk-32bit:
script:
- mkdir build-%epiphansdk_tag%-%arch_tag%
- cd build-%epiphansdk_tag%-%arch_tag%
- cmake -D ZLIB_ROOT=%zlib_root% -D USE_EPIPHAN:BOOL=ON ..
- cmake -D ZLIB_ROOT="%zlib_root%" -D USE_EPIPHAN:BOOL=ON ..
- cmake --build . --config Release
- dir
- dir Release\xono2l-%epiphansdk_tag%-%arch_tag%.dll
Expand All @@ -57,7 +57,7 @@ build-against-epiphan-sdk-64bit:
script:
- mkdir build-%epiphansdk_tag%-%arch_tag%
- cd build-%epiphansdk_tag%-%arch_tag%
- cmake -A x64 -D ZLIB_ROOT=%zlib_root% -D USE_EPIPHAN:BOOL=ON ..
- cmake -A x64 -D ZLIB_ROOT="%zlib_root%" -D USE_EPIPHAN:BOOL=ON ..
- cmake --build . --config Release
- dir
- dir Release\xono2l-%epiphansdk_tag%-%arch_tag%.dll
Expand Down

0 comments on commit 5fa37c0

Please sign in to comment.