File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 9898 run : |
9999 copy build/cl_dll/Debug/client.pdb dist/${{ steps.extract_gamedir.outputs.gamedir }}/cl_dlls/
100100 copy build/dlls/Debug/hl.pdb dist/${{ steps.extract_gamedir.outputs.gamedir }}/dlls/
101- - name : Delete .lib files from dist
102- if : startsWith(matrix.os, 'windows')
103- run : |
104- Remove-Item -Force -Path dist/${{ steps.extract_gamedir.outputs.gamedir }}/cl_dlls/client.lib
105- Remove-Item -Force -Path dist/${{ steps.extract_gamedir.outputs.gamedir }}/dlls/hl.lib
106101 - name : Upload linux artifact
107102 if : startsWith(matrix.os, 'ubuntu')
108103 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -228,7 +228,8 @@ if(HAVE_LTO)
228228endif ()
229229
230230install ( TARGETS ${CLDLL_LIBRARY}
231- DESTINATION "${GAMEDIR} /${CLIENT_INSTALL_DIR} /"
231+ RUNTIME DESTINATION "${GAMEDIR} /${CLIENT_INSTALL_DIR} /"
232+ LIBRARY DESTINATION "${GAMEDIR} /${CLIENT_INSTALL_DIR} /"
232233 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
233234 GROUP_READ GROUP_EXECUTE
234235 WORLD_READ WORLD_EXECUTE )
Original file line number Diff line number Diff line change @@ -189,7 +189,8 @@ if(HAVE_LTO)
189189endif ()
190190
191191install ( TARGETS ${SVDLL_LIBRARY}
192- DESTINATION "${GAMEDIR} /${SERVER_INSTALL_DIR} /"
192+ RUNTIME DESTINATION "${GAMEDIR} /${SERVER_INSTALL_DIR} /"
193+ LIBRARY DESTINATION "${GAMEDIR} /${SERVER_INSTALL_DIR} /"
193194 PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE
194195 GROUP_READ GROUP_EXECUTE
195196 WORLD_READ WORLD_EXECUTE)
You can’t perform that action at this time.
0 commit comments