This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Appends the cmake/modules path to MAKE_MODULE_PATH variable. | |
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules ${CMAKE_MODULE_PATH}) | |
include(DocbookGen) | |
configure_file(${CMAKE_SOURCE_DIR}/docs/index.docbook.in | |
${CMAKE_CURRENT_BINARY_DIR}/index.docbook) | |
set(docbookFile "${CMAKE_CURRENT_BINARY_DIR}/index.docbook") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#The following lines should be added to your .bashrc file to use the git-output.awk file | |
SEP="║" | |
SEP2="•" | |
function parse_git_output { | |
path=$(pwd) | |
# Don't do git status over networked paths. | |
# It kills performance, and the prompt takes forever to return. | |
if [[ $path =~ "/net/" ]]; then | |
return |