resources management in Qt creator
-
wrote on 2 Mar 2023, 15:59 last edited by
Hello everybody,
Am I the only one who has an issue with managing the resources(.qrc) in qt creator when using cmake ?
when I use qmake, all the resources are shown in the project explorer, and there is even the options to copy the qrc path of resources, open the resource editor etc...
How do I get access to all that while using CMake?
Thanks
-
wrote on 2 Mar 2023, 16:52 last edited by
did you
set(CMAKE_AUTORCC ON)
in your cmakefile.txt ?
-
did you
set(CMAKE_AUTORCC ON)
in your cmakefile.txt ?
wrote on 3 Mar 2023, 19:53 last edited by@ankou29666 No and thanks, this solves my issue.
part of me feels a bit dumb for not reading the doc properly, and part of me is wondering why this is not automatically added to the generated when the CMakeLists.txt file, since qml projects by default use the resource system ...Thanks.
-
1/3