2019-11-23 20:27:39 +08:00
|
|
|
# Adapated from ITKv4/CMake/PreventInSourceBuilds.cmake
|
|
|
|
#
|
|
|
|
# This function will prevent in-source builds
|
|
|
|
function(AssureOutOfSourceBuilds)
|
|
|
|
# make sure the user doesn't play dirty with symlinks
|
|
|
|
get_filename_component(srcdir "${CMAKE_SOURCE_DIR}" REALPATH)
|
|
|
|
get_filename_component(bindir "${CMAKE_BINARY_DIR}" REALPATH)
|
|
|
|
|
|
|
|
# disallow in-source builds
|
|
|
|
if("${srcdir}" STREQUAL "${bindir}")
|
|
|
|
message("######################################################")
|
2022-10-18 19:13:40 +08:00
|
|
|
message("# axmol should not be configured & built in the axmol source directory")
|
2019-11-23 20:27:39 +08:00
|
|
|
message("# You must run cmake in a build directory.")
|
|
|
|
message("# For example:")
|
2022-10-18 19:13:40 +08:00
|
|
|
message("# mkdir axmol ; cd axmol")
|
|
|
|
message("# download & unpack the axmol tarball")
|
2022-07-08 14:20:41 +08:00
|
|
|
message("# mkdir build")
|
2019-11-23 20:27:39 +08:00
|
|
|
message("# this will create the following directory structure")
|
|
|
|
message("#")
|
2022-10-18 19:13:40 +08:00
|
|
|
message("# axmol")
|
|
|
|
message("# +--axmol")
|
2022-07-08 14:20:41 +08:00
|
|
|
message("# +--build")
|
2019-11-23 20:27:39 +08:00
|
|
|
message("#")
|
|
|
|
message("# Then you can proceed to configure and build")
|
|
|
|
message("# by using the following commands")
|
|
|
|
message("#")
|
2022-07-08 14:20:41 +08:00
|
|
|
message("# cd build")
|
2022-10-18 19:13:40 +08:00
|
|
|
message("# cmake ../axmol # or ccmake, or cmake-gui ")
|
2019-11-23 20:27:39 +08:00
|
|
|
message("# make")
|
|
|
|
message("#")
|
|
|
|
message("# NOTE: Given that you already tried to make an in-source build")
|
|
|
|
message("# CMake have already created several files & directories")
|
|
|
|
message("# in your source tree. run 'git status' to find them and")
|
|
|
|
message("# remove them by doing:")
|
|
|
|
message("#")
|
2022-10-18 19:13:40 +08:00
|
|
|
message("# cd axmol")
|
2019-11-23 20:27:39 +08:00
|
|
|
message("# git clean -n -d")
|
|
|
|
message("# git clean -f -d")
|
|
|
|
message("# git checkout --")
|
|
|
|
message("#")
|
|
|
|
message("######################################################")
|
|
|
|
message(FATAL_ERROR "Quitting configuration")
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
AssureOutOfSourceBuilds()
|
|
|
|
|