# HG changeset patch # User Jacob Alexander # Date 1410735790 25200 # Node ID c6a90fe8cf2f251dcf3caf222093f9bef8073590 # Parent a2e9bb170eef3990ed52b542a550afb4393757fa Adding git refresh command to kll.cmake and kll file listing to build process diff -r a2e9bb170eef -r c6a90fe8cf2f Lib/CMake/kll.cmake --- a/Lib/CMake/kll.cmake Sun Sep 14 15:51:36 2014 -0700 +++ b/Lib/CMake/kll.cmake Sun Sep 14 16:03:10 2014 -0700 @@ -27,6 +27,11 @@ execute_process ( COMMAND ${GIT_EXECUTABLE} clone https://github.com/kiibohd/kll.git WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} ) +else () # Otherwise attempt to update the repo + # Clone kll git repo + execute_process ( COMMAND ${GIT_EXECUTABLE} pull --rebase + WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/kll + ) endif () # kll/kll.py exists @@ -96,6 +101,13 @@ endif () +#| Print list of layout sources used +message ( STATUS "Detected Layout Files:" ) +foreach ( filename ${KLL_DEPENDS} ) + message ( "${filename}" ) +endforeach () + + ### # Run KLL Compiler