• Vladislav Vaintroub's avatar
    Backport of the patch · b73763e0
    Vladislav Vaintroub authored
    http://lists.mysql.com/commits/57725
    
    Vladislav Vaintroub	2008-11-03
    Cleanup CMakeLists.txt(s) - remove winsock2 (ws2_32) from 
    TARGET_LINK_LIBRARIES. 
          
    Every exe or dll linked with mysys needs ws2_32, because
    mysys uses winsock function WSAStartup in my_init().
    However, there is no need to explicitely add ws2_32 to
    the list of TARGET_LINK_LIBRARIES multiple times. 
    Visual Studio comes with a handy pragma that tells linker
    to add library. So patch replaces bunch of ws2_32 in 
    CMakeLists with  single pragma comment(lib,"ws2_32")
    in my_init.c
          
    Additionally, reference to non-existing "debug" library
    has been removed from TARGET_LINK_LIBRARIES. The correct
    name of the library is "dbug".
    b73763e0
CMakeLists.txt 3.28 KB