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
# Get host name to enable host dependent settings | |
site_name(host_name) | |
# | |
# Overriding (pre-populating) options in config.cmake | |
# | |
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type (Release|Debug)") | |
option(WITH_API "Whether API should be built" FALSE) |
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
;; | |
;; Add this settings to your ~/.emacs file | |
;; | |
;; Fortran settings | |
(setq fortran-continuation-string "&") | |
(setq fortran-do-indent 2) | |
(setq fortran-if-indent 2) | |
(setq fortran-structure-indent 2) |
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
#!/bin/bash | |
################################################################################ | |
# Store this file as .git/hooks/commit-msg in your repository in order to | |
# enforce checking for proper commit message format before actual commits. You | |
# may need to make the script executable by 'chmod +x .git/hooks/commit-msg'. | |
################################################################################ | |
filename="$1" | |
copy=$(tempfile -p gitco) | |
cat $filename >> $copy | |
lineno=0 |