From ddb17f8bba582ae92f97e9c8e458f32af84e19b4 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Thu, 5 Dec 2024 02:43:42 +0100 Subject: [PATCH] Move main.cpp to src/ dir --- CMakeLists.txt | 2 +- main.cpp => src/main.cpp | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename main.cpp => src/main.cpp (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e9216d..e813bae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ qt_standard_project_setup(REQUIRES 6.5) set(CMAKE_AUTORCC ON) qt_add_executable(appSolitare - main.cpp + src/main.cpp qml/images.qrc qml/qml.qrc ) diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp