diff options
author | Josh Blum <josh@joshknows.com> | 2010-11-29 19:09:43 -0500 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-11-29 19:09:43 -0500 |
commit | 5e4875eb188d80ef6a0321d7fe03c595370062a2 (patch) | |
tree | 6638704433bba89b3f6af332cf8b86b1865a0694 /host/config | |
parent | d96252d6dcf24a8dec9a2f171bd8f305702d8432 (diff) | |
download | uhd-5e4875eb188d80ef6a0321d7fe03c595370062a2.tar.gz uhd-5e4875eb188d80ef6a0321d7fe03c595370062a2.tar.bz2 uhd-5e4875eb188d80ef6a0321d7fe03c595370062a2.zip |
uhd: added macro to enable/disable components
libuhd prints summary of components
added newline prints before config checks
Diffstat (limited to 'host/config')
-rw-r--r-- | host/config/Python.cmake | 1 | ||||
-rw-r--r-- | host/config/Version.cmake | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/host/config/Python.cmake b/host/config/Python.cmake index 95cdb4479..847e7bff3 100644 --- a/host/config/Python.cmake +++ b/host/config/Python.cmake @@ -27,6 +27,7 @@ IF(NOT DEFINED PYTHON_EXECUTABLE) ENDIF(NOT DEFINED PYTHON_EXECUTABLE) MACRO(PYTHON_CHECK_MODULE desc mod cmd have) + MESSAGE(STATUS "") MESSAGE(STATUS "Python checking for ${desc}") EXECUTE_PROCESS( COMMAND ${PYTHON_EXECUTABLE} -c " diff --git a/host/config/Version.cmake b/host/config/Version.cmake index 214002b7b..839db7833 100644 --- a/host/config/Version.cmake +++ b/host/config/Version.cmake @@ -25,6 +25,7 @@ SET(UHD_VERSION_PATCH 0) #Short hash of git commit ######################################################################## # Find GIT to get repo information ######################################################################## +MESSAGE(STATUS "") MESSAGE(STATUS "Checking for git") FIND_PROGRAM(GIT git) IF(${GIT} STREQUAL "GIT-NOTFOUND") |