classes/cmake.bbclass: A small explanation why it says inherit autotools
[vuplus_openembedded] / classes / cmake.bbclass
1 # We want the staging and installing functions from autotools
2 inherit autotools
3
4 cmake_do_configure() {
5     cmake . -DCMAKE_INSTALL_PREFIX:PATH=${prefix}
6 }
7
8 EXPORT_FUNCTIONS do_configure