Problème CMakeList.txt pour Linux

Salut 4ian,

Il y a un problème dans le CMakeList qui empêche la compilation des extensions en Runtime sur Linux. En effet, le fichier GDCpp.so est demandé alors qu’il n’existe pas (il s’appelle en réalité libGDCpp.so).

Partie de code corrigée

IF(NOT TARGET GDCpp_Runtime) add_library(GDCpp_Runtime SHARED IMPORTED) IF(WIN32) set_property(TARGET GDCpp_Runtime PROPERTY IMPORTED_LOCATION ${GDCpp_Runtime_lib_dir}/GDCpp.dll) set_property(TARGET GDCpp_Runtime PROPERTY IMPORTED_IMPLIB ${GDCpp_Runtime_lib_dir}/libGDCpp.dll.a) ELSE() set_property(TARGET GDCpp_Runtime PROPERTY IMPORTED_LOCATION ${GDCpp_Runtime_lib_dir}/libGDCpp.so) <-- Ici,il y avait GDCpp.so #set_property(TARGET GDCpp_Runtime PROPERTY IMPORTED_IMPLIB ${GDCpp_Runtime_lib_dir}/libGDCpp.so.a) ENDIF(WIN32) ENDIF()

C’est corrigé ! Bizarre que ça marchait tout de même chez moi.