qmake to cmake
Unsolved
General and Desktop
-
Hi!
In our project, we often use 'pri' files to connect a number of sources to the project. For example we have 'pri' file like that:
HEADERS += \ $$PWD/IAuthManager.h \ $$PWD/IAuthPlugin.h \ $$PWD/IUserInfo.h \ $$PWD/AuthManager.h \ $$PWD/AuthPlugin.h \ $$PWD/UserInfo.h \ SOURCES += \ $$PWD/AuthManager.cpp \ $$PWD/AuthPlugin.cpp \ $$PWD/UserInfo.cpp \
Include that 'pri' file in the main project 'pro' file. How to make the same in the 'cmake' file ?
-