Skip to content

Commit

Permalink
Fix Lib importing ?
Browse files Browse the repository at this point in the history
  • Loading branch information
strseb committed Nov 14, 2022
1 parent 3ca44c3 commit d6c0a95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cmake/sentry.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if( ${_SUPPORTED} GREATER -1 )
)
endif()
if(WIN32)
SET(SENTRY_ARGS -DSENTRY_BUILD_SHARED_LIBS=false -D SENTRY_BACKEND=breakpad)
SET(SENTRY_ARGS -DSENTRY_BUILD_SHARED_LIBS=false -D SENTRY_BACKEND=breakpad -DCMAKE_BUILD_TYPE=Release)
# Link against static sentry + breakpad + the stack unwind utils
target_link_libraries(mozillavpn PUBLIC sentry.lib)
target_link_libraries(mozillavpn PUBLIC breakpad_client.lib)
Expand Down
4 changes: 2 additions & 2 deletions taskcluster/scripts/fetch/enter_dev_shell.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ ForEach-Object -InputObject $INCLUDE_ADDS {
}

$LIB_ADDS = `
"$W10_SDK_PATH\lib\$W10_SDK_VERSION\ucrt\x64;" ,`
"$W10_SDK_PATH\lib\$W10_SDK_VERSION\um\x64;" ,`
"$W10_SDK_PATH\Lib\$W10_SDK_VERSION\ucrt\x64;" ,`
"$W10_SDK_PATH\Lib\$W10_SDK_VERSION\um\x64;" ,`
"$VS_STUDIO_LOCATION\VC\Tools\MSVC\$MSVC_VERSION\ATLMFC\lib\x64;" ,`
"$VS_STUDIO_LOCATION\VC\Tools\MSVC\$MSVC_VERSION\lib\x64;" ,`
"$VS_STUDIO_LOCATION\DIA SDK\lib\amd64;"
Expand Down

0 comments on commit d6c0a95

Please sign in to comment.