mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
24 lines
823 B
CMake
24 lines
823 B
CMake
function(run_pzip target_name source destination glob)
|
|
file(GLOB_RECURSE files RELATIVE "${source}" "${source}/${glob}")
|
|
|
|
set(dstfiles "")
|
|
foreach(srcfile ${files})
|
|
file(RELATIVE_PATH srcfile_rel "${destination}" "${source}/${srcfile}")
|
|
file(RELATIVE_PATH dstfile_rel "${destination}" "${destination}/${srcfile}.pz")
|
|
|
|
list(APPEND dstfiles "${dstfile_rel}")
|
|
add_custom_command(OUTPUT "${dstfile_rel}"
|
|
COMMAND pzip -c > "${dstfile_rel}" < "${srcfile_rel}"
|
|
WORKING_DIRECTORY "${destination}"
|
|
DEPENDS pzip
|
|
COMMENT "")
|
|
|
|
get_filename_component(dstdir "${destination}/${dstfile_rel}" DIRECTORY)
|
|
file(MAKE_DIRECTORY "${dstdir}")
|
|
endforeach(srcfile)
|
|
|
|
add_custom_target(${target_name} ALL
|
|
DEPENDS ${dstfiles}
|
|
WORKING_DIRECTORY "${destination}")
|
|
endfunction(run_pzip)
|