Browse Source

Using full length kll.py arguments

- Helps readability in kll debug output
simple
Jacob Alexander 9 years ago
parent
commit
d63886954c
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Lib/CMake/kll.cmake

+ 2
- 2
Lib/CMake/kll.cmake 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