The following issue has been SUBMITTED. ====================================================================== http://public.kitware.com/Bug/view.php?id=14393 ====================================================================== Reported By: tss Assigned To: ====================================================================== Project: CMake Issue ID: 14393 Category: Modules Reproducibility: always Severity: minor Priority: normal Status: new ====================================================================== Date Submitted: 2013-09-09 18:32 EDT Last Modified: 2013-09-09 18:32 EDT ====================================================================== Summary: FindwxWidgets.cmake doesn't look for x64 wxWidgets (MSVC) directories. Description: 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() ====================================================================== 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 ====================================================================== -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers
