Merge branch 'master' of github.com:vscosta/yap-6.3

This commit is contained in:
Vitor Santos Costa
2016-02-03 10:17:01 +00:00
173 changed files with 6345 additions and 6576 deletions

18
cmake/disallow.cmake Normal file
View File

@@ -0,0 +1,18 @@
function (disallow_intree_builds)
# Adapted from LLVM's/UTF8proc toplevel CMakeLists.txt file
if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE )
message(SYSTEM_ERROR_FATAL "
In-source builds are not allowed. Please create a directory
and run cmake from there. Building in a subdirectory is
fine, e.g.:
mkdir build
cd build
cmake ..
This process created the file `CMakeCache.txt' and the
directory `CMakeFiles'. Please delete them.
")
endif()
endfunction()