Skip to content

Commit

Permalink
added Debug and Release .lib files for libcef and libcef_dll_wrapper.
Browse files Browse the repository at this point in the history
fixed up Release configuration
added Release/ dir to .gitignore
  • Loading branch information
chillitom committed Dec 20, 2010
1 parent bb21fb5 commit 270423f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ obj/
Debug/
*.ReSharper
CefSharp/app.aps
TestResult.xml
TestResult.xml
Release/
11 changes: 7 additions & 4 deletions CefSharp/CefSharp.vcproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<Tool
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories="$(SolutionDir)\include"
AdditionalIncludeDirectories="$(SolutionDir)include"
PreprocessorDefinitions="_DEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;WIN32_LEAN_AND_MEAN;USING_CEF_SHARED;_CRT_SECURE_NO_WARNINGS"
RuntimeLibrary="3"
UsePrecompiledHeader="2"
Expand All @@ -66,7 +66,7 @@
AdditionalDependencies="opengl32.lib glu32.lib libcef.lib libcef_dll_wrapper.lib"
ShowProgress="1"
LinkIncremental="1"
AdditionalLibraryDirectories="$(SolutionDir)\libs"
AdditionalLibraryDirectories="$(SolutionDir)libs\$(ConfigurationName)\"
IgnoreAllDefaultLibraries="false"
IgnoreDefaultLibraryNames=""
GenerateDebugInformation="true"
Expand Down Expand Up @@ -122,7 +122,8 @@
/>
<Tool
Name="VCCLCompilerTool"
PreprocessorDefinitions="WIN32;NDEBUG"
AdditionalIncludeDirectories="$(SolutionDir)include"
PreprocessorDefinitions="_NDEBUG;_WIN32_WINNT=0x0600;WINVER=0x0600;WIN32;_WINDOWS;WIN32_LEAN_AND_MEAN;USING_CEF_SHARED;_CRT_SECURE_NO_WARNINGS"
RuntimeLibrary="2"
UsePrecompiledHeader="2"
WarningLevel="3"
Expand All @@ -139,8 +140,10 @@
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="$(NoInherit)"
AdditionalDependencies="opengl32.lib glu32.lib libcef.lib libcef_dll_wrapper.lib"
ShowProgress="1"
LinkIncremental="1"
AdditionalLibraryDirectories="$(SolutionDir)libs\$(ConfigurationName)\"
GenerateDebugInformation="true"
TargetMachine="1"
/>
Expand Down
4 changes: 3 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ NEWS

2010/12/20 - 0.3 Released
-------------------------
- [Download 0.3 here](https://github.com/downloads/chillitom/CefSharp/CefSharp-0.3.7z "src, bins and examples")
- [Download 0.3.1 here](https://github.com/downloads/chillitom/CefSharp/CefSharp-0.3.1.7z "src, bins and examples")
- Improvements to CLR object binding (big thanks _fddima_)
- Updated to CEF r152 / Chromium r69409
- Calling _CefBrowserControl.Focus()_ now works.
Expand All @@ -21,6 +21,8 @@ NEWS

All feedback is welcomed gladly. Enjoy. T.

_UPDATE_ : bounced zip to 0.3.1 to fix a build issue, now includes Debug and Release lib files.

2010/12/15 - 0.2 Released
-------------------------
- [Download 0.2 here](https://github.com/downloads/chillitom/CefSharp/CefSharp-0.2.7z "src, bins and examples")
Expand Down
Binary file added libs/Debug/libcef.lib
Binary file not shown.
Binary file added libs/Debug/libcef_dll_wrapper.lib
Binary file not shown.
File renamed without changes.
Binary file not shown.

0 comments on commit 270423f

Please sign in to comment.