Reactos

[VFDLIB] GitHub actions workaround - Disable PDB generation for vfd.dll (#6762)

After a back and fourth investigation I've just decided to disable pdb generation for this ROSAPP for now.
We tried taking the code apart a bit and only building parts but alas it didnt yield any sucess.

disabling the AV also didn't help.

authored by

Justin Miller and committed by
GitHub
9452b29c 21a9f78b

+6
+6
modules/rosapps/lib/vfdlib/CMakeLists.txt
··· 32 32 set_module_type(vfd win32dll ENTRYPOINT DllMain 12) 33 33 target_link_libraries(vfd zlib_solo uuid cppstl) 34 34 set_target_cpp_properties(vfd WITH_EXCEPTIONS) 35 + 36 + # Okay - After a long investigation this modules PDBs are just absolutely fighting github actions 37 + if(MSVC) 38 + target_link_options(vfd PRIVATE "/DEBUG:NONE") 39 + endif() 40 + 35 41 add_importlibs(vfd advapi32 user32 gdi32 shell32 comdlg32 comctl32 ole32 version psapi msvcrt kernel32 ntdll) 36 42 add_dependencies(vfd vfdmsg_lib) 37 43 add_cd_file(TARGET vfd DESTINATION reactos/system32 FOR all)