Skip to content

Commit

Permalink
cmake: Fix VPK and texture dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mwpenny committed Jan 1, 2025
1 parent a92b41a commit 5f64d68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/materials/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ add_custom_target(textures
)
set_target_properties(textures PROPERTIES
# Enable dependents to easily depend on transformed textures
OUTPUTS ${TEXTURES_TRANSFORMED}
OUTPUTS "${TEXTURES_TRANSFORMED}"
)

#########################
Expand Down
2 changes: 1 addition & 1 deletion linker/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ add_custom_target(linker_script
DEPENDS ${OUTPUT_LINKER_SCRIPT}
)
set_target_properties(linker_script PROPERTIES
SCRIPT_FILE ${OUTPUT_LINKER_SCRIPT}
SCRIPT_FILE "${OUTPUT_LINKER_SCRIPT}"
)
2 changes: 1 addition & 1 deletion vpk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,5 @@ add_custom_target(extract_vpks
DEPENDS ${VPK_STAMP_FILES}
)
set_target_properties(extract_vpks PROPERTIES
OUTPUTS ${VPK_STAMP_FILES}
OUTPUTS "${VPK_STAMP_FILES}"
)

0 comments on commit 5f64d68

Please sign in to comment.