2017-11-16 08:59:03 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2019-04-06 10:42:56 +00:00
|
|
|
#ifndef cmQtAutoRcc_h
|
|
|
|
#define cmQtAutoRcc_h
|
2017-11-16 08:59:03 +00:00
|
|
|
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
|
2019-09-27 13:49:13 +00:00
|
|
|
#include <cm/string_view>
|
2017-11-16 08:59:03 +00:00
|
|
|
|
2019-09-27 13:49:13 +00:00
|
|
|
/**
|
|
|
|
* Process AUTORCC
|
|
|
|
* @return true on success
|
2019-09-23 11:21:10 +00:00
|
|
|
*/
|
2019-09-27 13:49:13 +00:00
|
|
|
bool cmQtAutoRcc(cm::string_view infoFile, cm::string_view config);
|
2017-11-16 08:59:03 +00:00
|
|
|
|
|
|
|
#endif
|