Create Folder using Jam -
i'm using jam in project automate building in visual studio.
i'm trying move subdirectories , files $folder $folder1. $folder containing project $folder1 empty.
i use file copy files.
i try copy files this:
file ($folder1) : ($folder) ; //works file ($folder1)\\subdir : ($folder)\\subdir //don't work //etc...
but $folder1 empty , not contain folder structure file ($folder1)\\subdir : ($folder)\\subdir
doesn't because $folder1 empty.
is there way in jam create folder depending if exists or not?
i solved using mkdir
https://swarm.workshop.perforce.com/view/guest/perforce_software/jam/src/jambase.html
it's important add target
depends
depends rule : $(1) ; mkdir $(1) ;
Comments
Post a Comment