Codebase list votca-xtp / debian/1.6.1-1 tutorials / CMakeModules / FileExists.cmake
debian/1.6.1-1

Tree @debian/1.6.1-1 (Download .tar.gz)

FileExists.cmake @debian/1.6.1-1raw · history · blame

1
2
3
4
5
if(EXISTS ${FileToCheck})
  message("${FileToCheck} exists.")
else()
  message(FATAL_ERROR "${FileToCheck} doesn't exist.")
endif()