1
0
Fork 0

move the universe model to the platform library

This commit is contained in:
Kevin Matz 2022-12-03 21:33:23 -05:00
parent 6e6b47edb5
commit c46ca4b0cc
4 changed files with 4 additions and 3 deletions

View File

@ -28,8 +28,6 @@ target_sources(${PROJECT_NAME}
multiverseview.ui
sacnexplorer.h
sacnexplorer.cpp
universemodel.cpp
universemodel.h
universewindow.h
universewindow.cpp
universewindow.ui

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.21.1)
project(QsACN VERSION 0.3.1 LANGUAGES CXX)
find_package(Qt6 COMPONENTS Network REQUIRED)
find_package(Qt6 COMPONENTS Gui Network REQUIRED)
set(CMAKE_AUTOMOC ON)
@ -12,14 +12,17 @@ target_sources(${PROJECT_NAME}
PUBLIC
qsacnnode.h
qsacnuniverse.h
universemodel.h
PRIVATE
qsacn_global.h
qsacnnode.cpp
qsacnuniverse.cpp
universemodel.cpp
)
target_link_libraries(${PROJECT_NAME}
PUBLIC
Qt::Gui
Qt::Network
LCP_sacn
)