summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt
diff options
context:
space:
mode:
authorAsit Dhal <dhal.asitk@gmail.com>2020-10-04 17:44:31 (GMT)
committerAsit Dhal <dhal.asitk@gmail.com>2020-10-24 10:00:47 (GMT)
commit03ad0e61c19304ae145cfa0683b43d9756d37ff5 (patch)
tree4b80c6107710ce8e1ccca1de4ec03ac9232ba024 /Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt
parent5988a4deea67ed122b30c2c0437f70e074273789 (diff)
downloadCMake-03ad0e61c19304ae145cfa0683b43d9756d37ff5.zip
CMake-03ad0e61c19304ae145cfa0683b43d9756d37ff5.tar.gz
CMake-03ad0e61c19304ae145cfa0683b43d9756d37ff5.tar.bz2
configure_file: Add option for user defined permissions
User defined permissions and options to copy permissions are implemented. Fixes: #20866
Diffstat (limited to 'Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt')
0 files changed, 0 insertions, 0 deletions
n, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] QDBusReply<QString> reply = interface->call("RemoteMethod"); if (reply.isValid()) // use the returned value useValue(reply.value()); else // call failed. Show an error condition. showError(reply.error()); //! [0] //! [1] QString reply = interface->call("RemoteMethod"); //! [1]