Je suis un débutant en CMAKE. Voici un fichier cmake simple qui fonctionne bien dans l'environnement mingw de Windows. Le problème se situe clairement au niveau de target_link_libraries()
de CMAKE où je lie libwsock32.a. Sous Windows, cela fonctionne et j'obtiens les résultats.
Toutefois, comme prévu, sous Linux, le /usr/bin/ld
recherchera -lwsock32
qui n'existe pas dans le système d'exploitation Linux.
Mon problème est le suivant : comment puis-je demander à CMAKE d'éviter de lier la bibliothèque wsock32 dans le système d'exploitation Linux ???
Toute aide sera grandement appréciée.
Mon fichier CMake simple :
PROJECT(biourl)
set (${PROJECT_NAME}_headers ./BioSocketAddress.h ./BioSocketBase.h ./BioSocketBuffer.h ./BioSocketCommon.h ./BioSocketListener.h ./BioSocketPrivate.h ./BioSocketStream.h ./BioUrl.h BioDatabase.h )
set (${PROJECT_NAME}_sources BioSocketAddress.C BioSocketBase.C BioSocketCommon.C BioSocketStream.C BioUrl.C BioDatabase.C )
add_library(${PROJECT_NAME} STATIC ${${PROJECT_NAME}_headers} ${${PROJECT_NAME}_sources} )
# linkers
#find_library(ws NAMES wsock32 PATHS ${PROJECT_SOURCE_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_DEFAULT_PATH)
target_link_libraries(${PROJECT_NAME} bioutils wsock32)
install (TARGETS ${PROJECT_NAME}
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib/archive )