Scaffold Qt6 Widgets app for Milestone 0

This commit is contained in:
Keith Smith
2026-03-01 08:56:10 -07:00
parent da11b96dab
commit 285a81d9b5
6 changed files with 279 additions and 0 deletions

27
CMakeLists.txt Normal file
View File

@@ -0,0 +1,27 @@
cmake_minimum_required(VERSION 3.21)
project(OrbitHub VERSION 0.1.0 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
find_package(Qt6 6.2 REQUIRED COMPONENTS Widgets)
qt_standard_project_setup()
add_executable(orbithub
src/main.cpp
src/profiles_window.cpp
src/profiles_window.h
src/session_window.cpp
src/session_window.h
)
target_link_libraries(orbithub PRIVATE Qt6::Widgets)
install(TARGETS orbithub RUNTIME DESTINATION bin)