5

CMakeLists.txt で、bzlib.h が存在することを確認したいと思います。

include(CheckIncludeFiles)
check_include_file(bzlib.h HAVE_BZLIB_H)
if(NOT HAVE_BZLIB_H)
    # How can I exit cmake with an error message if bzlib.h does not exists?
endif()
4

1 に答える 1

11

とても簡単です: message( FATAL_ERROR "Your message" )

于 2013-02-03T16:43:36.587 に答える