You have to create a file similar to config.h.in
. Something like
#cmakedefine HAVE_FEATURE_A @Feature_A_FOUND@
#cmakedefine HAVE_FEATURE_B @Feature_B_FOUND@
#cmakedefine HAVE_FEATURE_BITS @B_BITSIZE@
Then you have to declare the variables Feature_A_FOUND
, Feature_B_FOUND
, B_BITSIZE
in your CMake code and call
configure_file(config.h.in config.h)
which will result in a config.h file similar to the one from the autotools. If a variable is not found or is set to false, the line will be commented. Otherwise the value will be inserted. Assume Feature_A_FOUND=A-NOTFOUND
? Feature_B_FOUND=/usr/lib/b
, B_BITSIZE=64
, which will result in
/* #undef HAVE_FEATURE_A @Feature_A_FOUND@ */
#define HAVE_FEATURE_B /usr/lib/b
#define HAVE_FEATURE_BITS 64
Probably HAVE_FEATURE_B would be better defined as #cmakedefine01
which results in 0 or 1 depending on the value of the variable.
In general it is possible to create every config.h file generated by Autotools as CMake is more flexible. But it requires more work and you cannot automatically get a config.h, but you have to write the .in file yourself.
Documentation:
https://cmake.org/cmake/help/v3.6/command/configure_file.html
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…