2023-08-06 08:48:11 -04:00
|
|
|
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
2023-07-08 10:33:12 -04:00
|
|
|
add_library(NovusCommon STATIC)
|
|
|
|
target_sources(NovusCommon PRIVATE
|
2023-09-23 15:45:38 -04:00
|
|
|
include/aboutdata.h
|
2023-07-09 10:54:27 -04:00
|
|
|
include/filecache.h
|
2023-09-23 15:21:36 -04:00
|
|
|
include/settings.h
|
2023-09-23 15:45:38 -04:00
|
|
|
src/aboutdata.cpp
|
2023-09-23 15:21:36 -04:00
|
|
|
src/filecache.cpp
|
|
|
|
src/settings.cpp)
|
2023-07-08 10:33:12 -04:00
|
|
|
target_include_directories(NovusCommon PUBLIC
|
|
|
|
include
|
|
|
|
PRIVATE
|
|
|
|
${CMAKE_BINARY_DIR})
|
2023-09-26 00:37:55 -04:00
|
|
|
target_link_libraries(NovusCommon PUBLIC Qt6::Core Qt6::Widgets KF6::CoreAddons KF6::ConfigCore KF6::XmlGui physis)
|