MantisBT - CMake
View Issue Details
0014393CMakeModulespublic2013-09-09 18:322014-12-15 09:18
tss 
Brad King 
normalminoralways
closedfixed 
WindowsAny x64Any x64
CMake 2.8.11.2 
CMake 3.0CMake 3.0 
0014393: FindwxWidgets.cmake doesn't look for x64 wxWidgets (MSVC) directories.
When compiling the 64 bit version of wxWidgets using nmake the library folders become vc_x64_lib and vc_x64_dll and can coexist with the win32 version.
 A simple fix is to adjust the WX_LIB_DIR_PREFIX.

- set(WX_LIB_DIR_PREFIX vc)
+ if(CMAKE_CL_64)
+ set(WX_LIB_DIR_PREFIX vc_x64)
+ else()
+ set(WX_LIB_DIR_PREFIX vc)
+ endif()
No tags attached.
related to 0014783closed  nightly build problem with findwxWidgets 
related to 0014642closed Kitware Robot CMAKE does not find the 64 bit versions of wxWidgets on Windows 
related to 0015309closed Kitware Robot 64 bit build of wxWidgets-2.8.12 is not found 
patch x64 fix.patch (622) 2013-09-09 18:32
https://public.kitware.com/Bug/file/4874/x64%20fix.patch
Issue History
2013-09-09 18:32tssNew Issue
2013-09-09 18:32tssFile Added: x64 fix.patch
2013-09-10 08:52Brad KingNote Added: 0033793
2013-09-10 08:52Brad KingAssigned To => Brad King
2013-09-10 08:52Brad KingStatusnew => assigned
2013-09-10 08:52Brad KingResolutionopen => fixed
2013-09-10 08:52Brad KingFixed in Version => CMake 3.0
2013-09-10 08:52Brad KingTarget Version => CMake 3.0
2013-09-10 08:52Brad KingStatusassigned => resolved
2014-03-03 08:49Brad KingRelationship addedrelated to 0014783
2014-03-03 08:55Brad KingRelationship addedrelated to 0014642
2014-10-06 10:32Robert MaynardNote Added: 0036924
2014-10-06 10:32Robert MaynardStatusresolved => closed
2014-12-15 09:18Brad KingRelationship addedrelated to 0015309

Notes
(0033793)
Brad King   
2013-09-10 08:52   
Applied, thanks!

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=870f91e3 [^]
(0036924)
Robert Maynard   
2014-10-06 10:32   
Closing resolved issues that have not been updated in more than 4 months.