-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path010SetUp.bms
More file actions
executable file
·24 lines (19 loc) · 871 Bytes
/
010SetUp.bms
File metadata and controls
executable file
·24 lines (19 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Variables initialization
GetFilename( RIGID_REGISTRATION_IMAGE_TAG ${RIGID_REGISTRATION_IMAGE} NAME_WITHOUT_EXTENSION )
GetFilename( RIGID_REGISTRATION_IMAGE_EXT ${RIGID_REGISTRATION_IMAGE} EXTENSION )
RegEx( RIGID_REGISTRATION_IMAGE_TAG ${RIGID_REGISTRATION_IMAGE_TAG} '.*\*' REPLACE '' )
ForEach( file ${PROBMAP_DIR_FILES})
GetFilename( temp_TAG ${file} NAME_WITHOUT_EXTENSION )
GetFilename( temp_EXT ${file} EXTENSION )
Set( PROBMAP_FILES_TAG ${temp_TAG} ${PROBMAP_FILES_TAG})
Set( PROBMAP_FILES_EXT ${temp_EXT} ${PROBMAP_FILES_EXT})
if( ${temp_TAG} == template )
Set( TEMPLATE_EXT ${temp_EXT} )
endif( ${temp_TAG} == template )
EndForEach( file ${PROBMAP_DIR_FILES})
#RegEx(found ${tempDir} '\.' MATCH )
#if( ${found} != '' )
# RegEx(tempDirclean ${tempDir} '\.' REPLACE '')
# set(tempDir ${tempDirclean})
#endif()
MakeDirectory( ${tempDir} )