I have a pure C++
console app which runs on OSX
& I need to extend it as cross-platform (iOS+Android+OSX) with a simple UI for which I am planning to use commercial Qt
. The app's code compiles on g++
as well as clang++
. I verified it by making a .pro
& ran it on iOS
& android
. It works fine.
But I want to maintain the app with CMakeLists.txt
instead of a .pro
file. Is it possible ?
Importing the CMakeLists.txt
into the QtCreator
gives all options for android, iOS & OSX
but doesn't load the source code files !
How can I make a Qt app for iOS & android using CMakeLists.txt ?