Hello,

I am writing a scientific software that I would like to have a GUI. I have been using CMake so far for the compilation process which does not have a UI, just terminal output. For the UI, I want to use Qt and perferablly Qt Creator to help me build the UI. However, I want this to be nicely packaged in a directory and be built using CMake, not Qmake. I have seen lots of posts about how to open a CMakeLists.txt and import a project into Qt Creator, but can it go the other way? So Qt creator makes a standalone CmakeLists.txt for UI application where you don't need QT creator to build? Note: I am aware of the non-Qt option for C/C++ programs in Qt Creator but this is not for a UI, as I understand. Any suggestions would be helpful.

Thanks!