Reorganize cpp/ui files into /src/

This commit is contained in:
2023-09-23 22:07:21 -05:00
parent d778725ba8
commit c7898489b3
3 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ set(CMAKE_AUTOUIC ON)
find_package(Qt6 REQUIRED COMPONENTS Core Gui UiTools Widgets)
qt_add_executable(TestTaker main.cpp)
qt_add_executable(TestTaker src/main.cpp)
set_target_properties(TestTaker PROPERTIES
WIN32_EXECUTABLE TRUE # Required for GUI executables
@@ -24,7 +24,7 @@ qt6_add_resources(TestTaker "TestTaker"
PREFIX
"/forms"
FILES
"form.ui"
"src/form.ui"
)
install(TARGETS TestTaker

View File

View File