View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0014393CMakeModulespublic2013-09-09 18:322014-12-15 09:18
Reportertss 
Assigned ToBrad King 
PrioritynormalSeverityminorReproducibilityalways
StatusclosedResolutionfixed 
PlatformWindowsOSAny x64OS VersionAny x64
Product VersionCMake 2.8.11.2 
Target VersionCMake 3.0Fixed in VersionCMake 3.0 
Summary0014393: FindwxWidgets.cmake doesn't look for x64 wxWidgets (MSVC) directories.
DescriptionWhen 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()
TagsNo tags attached.
Attached Filespatch file icon x64 fix.patch [^] (622 bytes) 2013-09-09 18:32 [Show Content]

 Relationships
related to 0014783closed nightly build problem with findwxWidgets 
related to 0014642closedKitware Robot CMAKE does not find the 64 bit versions of wxWidgets on Windows 
related to 0015309closedKitware Robot 64 bit build of wxWidgets-2.8.12 is not found 

  Notes
(0033793)
Brad King (manager)
2013-09-10 08:52

Applied, thanks!

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=870f91e3 [^]
(0036924)
Robert Maynard (manager)
2014-10-06 10:32

Closing resolved issues that have not been updated in more than 4 months.

 Issue History
Date Modified Username Field Change
2013-09-09 18:32 tss New Issue
2013-09-09 18:32 tss File Added: x64 fix.patch
2013-09-10 08:52 Brad King Note Added: 0033793
2013-09-10 08:52 Brad King Assigned To => Brad King
2013-09-10 08:52 Brad King Status new => assigned
2013-09-10 08:52 Brad King Resolution open => fixed
2013-09-10 08:52 Brad King Fixed in Version => CMake 3.0
2013-09-10 08:52 Brad King Target Version => CMake 3.0
2013-09-10 08:52 Brad King Status assigned => resolved
2014-03-03 08:49 Brad King Relationship added related to 0014783
2014-03-03 08:55 Brad King Relationship added related to 0014642
2014-10-06 10:32 Robert Maynard Note Added: 0036924
2014-10-06 10:32 Robert Maynard Status resolved => closed
2014-12-15 09:18 Brad King Relationship added related to 0015309


Copyright © 2000 - 2018 MantisBT Team