summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/qt_cmake_create/testdata/cpp_project/main.cpp
blob: ae659d5ed48b37e8b4bdbfe55714fe28bfb33ab6 (plain)
1
2
3
4
5
6
7
#include <iostream>

int main(int, char *[])
{
    std::cout << "Now I have CMakeLists.txt. Thanks!" << std::endl;
    return 0;
}