Discussion:
3.0.0
Incongruous
2014-07-14 17:02:58 UTC
Permalink
Visual Studio Express 2013
WinOS 7 64bit

%WXWIN% = D:\wxWidgets-3.0.0
Hey, back to 3.0.0, and this are the results


21> wx_vc10_richtext.vcxproj -> D:\wxWidgets-3.0.0\build\msw\..\..\lib\vc_x64_lib\wxmsw30u_richtext.lib
23> wx_vc10_gl.vcxproj -> D:\wxWidgets-3.0.0\build\msw\..\..\lib\vc_x64_lib\wxmsw30u_gl.lib
========== Rebuild All: 23 succeeded, 0 failed, 0 skipped ==========


Pretty great eh!
~~~~~~~~~~~~~~
Now, let’s test this wonderful toolkit by compiling D:\wxWidgets-3.0.0\samples\sound\sound_vc9.vcxpro
Oops! It did not compile, humm
1>------ Build started: Project: sound, Configuration: Debug Win32 ------
1> sound.cpp
1>D:\wxWidgets-3.0.0\include\wx/platform.h(189): fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


What else do I need to do to compile the samples in WxWidget-3.0.0?
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Vadim Zeitlin
2014-07-14 17:08:41 UTC
Permalink
On Mon, 14 Jul 2014 13:02:58 -0400 Incongruous wrote:

I> Hey, back to 3.0.0, and this are the results

I am not sure what are you doing and why did you decide to go back to
3.0.0 instead of getting the new projects from svn (hint: if you don't know
what does some word mean, you can search the web for it) or just building
the single project that failed to build for you during the initial build.

I> 21> wx_vc10_richtext.vcxproj -> D:\wxWidgets-3.0.0\build\msw\..\..\lib\vc_x64_lib\wxmsw30u_richtext.lib
I> 23> wx_vc10_gl.vcxproj -> D:\wxWidgets-3.0.0\build\msw\..\..\lib\vc_x64_lib\wxmsw30u_gl.lib
I> ========== Rebuild All: 23 succeeded, 0 failed, 0 skipped ==========
I>
I> Pretty great eh!
I> ~~~~~~~~~~~~~~
I> Now, let’s test this wonderful toolkit by compiling D:\wxWidgets-3.0.0\samples\sound\sound_vc9.vcxpro
^^^^^^^^^
Not sure what does this bring to the discussion.

I> Oops! It did not compile, humm
I> 1>------ Build started: Project: sound, Configuration: Debug Win32 ------
I> 1> sound.cpp
I> 1>D:\wxWidgets-3.0.0\include\wx/platform.h(189): fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
I> ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
I>
I> What else do I need to do to compile the samples in WxWidget-3.0.0?

The output you included shows that you built the library for x64 platform
and in Release configuration and are now trying to build the sample for
Win32 platform in Debug configuration. To increase your chances of success
I'd recommend choosing a single platform/configuration combination for both
and, for example, build the library in Debug Win32 configuration as well.

Regards,
VZ
--
TT-Solutions: wxWidgets consultancy and technical support
http://www.tt-solutions.com/
Loading...