Archived
1
0

Using full length kll.py arguments

- Helps readability in kll debug output
This commit is contained in:
Jacob Alexander 2015-02-09 20:02:19 -08:00
parent 775e4eab8f
commit d63886954c

View File

@ -64,7 +64,7 @@ endif ()
#| Configure DefaultMap if specified
if ( NOT "${DefaultMap}" STREQUAL "" )
set ( DefaultMap_Args -d )
set ( DefaultMap_Args --default )
string ( REPLACE " " ";" MAP_LIST ${DefaultMap} ) # Change spaces to semicolons
foreach ( MAP ${MAP_LIST} )
@ -83,7 +83,7 @@ endif ()
if ( NOT "${PartialMaps}" STREQUAL "" )
# For each partial layer
foreach ( MAP ${PartialMaps} )
set ( PartialMap_Args ${PartialMap_Args} -p )
set ( PartialMap_Args ${PartialMap_Args} --partial )
# Combine each layer
string ( REPLACE " " ";" MAP_LIST ${MAP} ) # Change spaces to semicolons