diff --git a/.cache/clangd/index/main.cpp.C92F42F10057299B.idx b/.cache/clangd/index/main.cpp.C92F42F10057299B.idx new file mode 100644 index 0000000..f8e6962 Binary files /dev/null and b/.cache/clangd/index/main.cpp.C92F42F10057299B.idx differ diff --git a/.cache/clangd/index/mp.cpp.1B5CA3A9A4A29652.idx b/.cache/clangd/index/mp.cpp.1B5CA3A9A4A29652.idx new file mode 100644 index 0000000..f8831a2 Binary files /dev/null and b/.cache/clangd/index/mp.cpp.1B5CA3A9A4A29652.idx differ diff --git a/.cache/clangd/index/mp2.cpp.0DC725A2CB1B4618.idx b/.cache/clangd/index/mp2.cpp.0DC725A2CB1B4618.idx new file mode 100644 index 0000000..07cef82 Binary files /dev/null and b/.cache/clangd/index/mp2.cpp.0DC725A2CB1B4618.idx differ diff --git a/.cache/clangd/index/tst_math.cpp.8E1FE796C691D856.idx b/.cache/clangd/index/tst_math.cpp.8E1FE796C691D856.idx new file mode 100644 index 0000000..50fe1f5 Binary files /dev/null and b/.cache/clangd/index/tst_math.cpp.8E1FE796C691D856.idx differ diff --git a/CMakeLists.txt b/CMakeLists.txt index d9b4967..fa7aea8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,10 @@ cmake_minimum_required(VERSION 3.0) # sets the PROJECT_NAME variable project(qmlApp) -add_definitions(-std=c++14) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +#add_definitions(-std=c++14) + set(CMAKE_CXX_FLAGS "${CMAXE_CXX_FLAGS} -Wall") set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules) diff --git a/README.md b/README.md index 79bafe1..7612cf0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +# CAUTION: use MinimalQml repo instead. + # qt5-qml-cpp-cmake-helloworld Simple hello world example using qt5, qml, c++, cmake @@ -11,7 +13,7 @@ Simple hello world example using qt5, qml, c++, cmake ## Background -This is a simple helloworld example: +This is a simple helloworld example: * opens up a window an displays the text "Hello world!" * The window and text are configured through a qt5 qml file. @@ -34,7 +36,7 @@ Assuming you already have an appropriate qt5 environment. For osx (macOS) users for step 3 you may need something like: ``` -cmake .. -DCMAKE_PREFIX_PATH="$(brew --prefix qt5 )" +cmake .. -DCMAKE_PREFIX_PATH="$(brew --prefix qt5 )" ``` ## hw.qml @@ -46,10 +48,10 @@ cmake .. -DCMAKE_PREFIX_PATH="$(brew --prefix qt5 )" ## CMakeLists.txt This is the **cmake** config file. -Of note: +Of note: * it looks for the appropriate Qt5 packages * `find_packages` -* what libraries to link with - * `target_link_libraries` -* copy the `qml` directory locally \ No newline at end of file +* what libraries to link with + * `target_link_libraries` +* copy the `qml` directory locally diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..c983c89 --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,97 @@ +[ +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/qmlApp_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -Wall -g -fPIC -o CMakeFiles/qmlApp.dir/qmlApp_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/qmlApp_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/qmlApp_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/qmlApp_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -Wall -g -fPIC -o CMakeFiles/qmlApp.dir/main.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/main.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/main.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/tests/qmltests", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QMLTEST_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -DQT_TESTCASE_BUILDDIR=\\\"/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build\\\" -DQT_TESTLIB_LIB -DQT_WIDGETS_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/tests/qmltests/tst_math_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtWidgets -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuickTest -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtTest -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -Wall -g -fPIC -o CMakeFiles/tst_math.dir/tst_math_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/tests/qmltests/tst_math_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/tests/qmltests/tst_math_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/tests/qmltests", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QMLTEST_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -DQT_TESTCASE_BUILDDIR=\\\"/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build\\\" -DQT_TESTLIB_LIB -DQT_WIDGETS_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/tests/qmltests/tst_math_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtWidgets -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuickTest -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtTest -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -Wall -g -fPIC -o CMakeFiles/tst_math.dir/tst_math.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/tests/qmltests/tst_math.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/tests/qmltests/tst_math.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock.dir/gmock_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock.dir/__/googletest/src/gtest-all.cc.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest-all.cc", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock.dir/src/gmock-all.cc.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/src/gmock-all.cc", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/src/gmock-all.cc" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_main_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/gmock_main_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_main_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_main_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_main_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/__/googletest/src/gtest-all.cc.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest-all.cc", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_main_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/src/gmock-all.cc.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/src/gmock-all.cc", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/src/gmock-all.cc" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gmock_main_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gmock_main.dir/src/gmock_main.cc.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/src/gmock_main.cc", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googlemock/src/gmock_main.cc" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest.dir/gtest_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest.dir/src/gtest-all.cc.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest-all.cc", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest-all.cc" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_main_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest_main.dir/gtest_main_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_main_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_main_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest", + "command": "/usr/bin/c++ -DQT_QML_DEBUG -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-build/googlemock/gtest/gtest_main_autogen/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/include -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest -Wall -g -Wall -Wall -Wshadow -DGTEST_HAS_PTHREAD=1 -fexceptions -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -o CMakeFiles/gtest_main.dir/src/gtest_main.cc.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest_main.cc", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/googletest-src/googletest/src/gtest_main.cc" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mpApp_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -Wall -g -fPIC -o CMakeFiles/mpApp.dir/mpApp_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mpApp_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mpApp_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mpApp_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -Wall -g -fPIC -o CMakeFiles/mpApp.dir/mp.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/mp/mp.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/mp/mp.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mp2App_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -Wall -g -fPIC -o CMakeFiles/mp2App.dir/mp2App_autogen/mocs_compilation.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mp2App_autogen/mocs_compilation.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mp2App_autogen/mocs_compilation.cpp" +}, +{ + "directory": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp", + "command": "/usr/bin/c++ -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_QMLMODELS_LIB -DQT_QML_DEBUG -DQT_QML_LIB -DQT_QUICK_LIB -I/home/talksik/code/qt5-qml-cpp-cmake-helloworld/build/mp/mp2App_autogen/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQml -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtNetwork -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtCore -isystem /home/talksik/Qt/5.15.14/gcc_64/./mkspecs/linux-g++ -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQuick -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtQmlModels -isystem /home/talksik/Qt/5.15.14/gcc_64/include/QtGui -Wall -g -fPIC -o CMakeFiles/mp2App.dir/mp2.cpp.o -c /home/talksik/code/qt5-qml-cpp-cmake-helloworld/mp/mp2.cpp", + "file": "/home/talksik/code/qt5-qml-cpp-cmake-helloworld/mp/mp2.cpp" +} +] \ No newline at end of file