View Single Post
  #5  
Old 06-07-2015, 09:51 PM
Takutoto's Avatar
Takutoto
Fire Beetle
 
Join Date: Jun 2015
Location: TX, USA
Posts: 4
Default

I hadn't been. I tried just now (with the same CMake configuration that I linked) and encountered the same errors.

I did notice one thing. I saw that CMake was pointing to this for MYSQL:

Code:
MySQL_INCLUDE_DIR: C:/EQ/Installs/xampp-win32-1.8.3-5-VC11/xampp/mysql/include
MySQL_LIBRARY_DEBUG: C:/EQ/Installs/xampp-win32-1.8.3-5-VC11/xampp/mysql/lib/mysqlclient.lib
MySQL_LIBRARY_RELEASE: C:/EQ/Installs/xampp-win32-1.8.3-5-VC11/xampp/mysql/lib/mysqlclient.lib
Which is where I installed XAMPP. I saw the VC11 in the XAMPP directory/version name, which tipped me off that it could be related. I changed it to this instead so that it points to the mysql located "dependencies" folder (which is Step 4 (b) in the User Guide):

Code:
MySQL_INCLUDE_DIR: C:/EQ/Source/dependencies/mysql_x86/include
MySQL_LIBRARY_DEBUG: C:/EQ/Source/dependencies/mysql_x86/lib/mysqlclient.lib
MySQL_LIBRARY_RELEASE: C:/EQ/Source/dependencies/mysql_x86/lib/mysqlclient.lib
This seemed to have fixed the "Linker Mismatch" errors, but I'm still seeing these errors related to already-defined variables in LIBCMT: http://pastebin.com/wf0bBy71

I'll do a little more digging to try to understand why these errors would appear.

Thanks for the help!
Reply With Quote