Skip to content

Commit

Permalink
Update CEF
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
Voltstro committed Sep 9, 2024
1 parent 5762872 commit 764cb22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Bump deps
- Updated CEF to 126.2.9
- Updated CEF to 128.4.9
- CEF engine gets compiled using .NET Native AOT
- Updated logging tags
- Mouse click events will always send `clickCount` with at least a value of 1.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
<ItemGroup Condition="'$(IsWindowsBuild)'=='true'">
<DirectPInvoke Include="cef_sandbox" />

<NativeLibrary Include="shlwapi.lib" />
<NativeLibrary Include="Advapi32.lib" />
<NativeLibrary Include="dbghelp.lib" />
<NativeLibrary Include="Delayimp.lib" />
Expand All @@ -43,7 +42,14 @@
<NativeLibrary Include="wbemuuid.lib" />
<NativeLibrary Include="WindowsApp.lib" />
<NativeLibrary Include="winmm.lib" />


<NativeLibrary Include="comctl32.lib" />
<NativeLibrary Include="gdi32.lib" />
<NativeLibrary Include="rpcrt4.lib" />
<NativeLibrary Include="shlwapi.lib" />
<NativeLibrary Include="ws2_32.lib" />

<NativeLibrary Include="..\..\ThirdParty\Libs\cef\windows64\Release\cef_sandbox.lib" />

<LinkerArg Include="/LIBPATH:..\..\ThirdParty\Libs\cef\windows64\Release\" />
Expand Down

0 comments on commit 764cb22

Please sign in to comment.