2023-08-06 08:48:11 -04:00
|
|
|
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
2023-10-10 18:31:34 -04:00
|
|
|
add_library(exdpart STATIC)
|
|
|
|
target_sources(exdpart PRIVATE exdpart.cpp)
|
2023-12-09 21:51:57 -05:00
|
|
|
target_link_libraries(exdpart
|
|
|
|
PUBLIC
|
2024-02-04 15:23:24 -05:00
|
|
|
KF6::I18n
|
2023-12-09 21:51:57 -05:00
|
|
|
Physis::Physis
|
|
|
|
Qt6::Core
|
|
|
|
Qt6::Widgets)
|
|
|
|
target_include_directories(exdpart PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
2024-02-04 15:36:08 -05:00
|
|
|
target_compile_definitions(exdpart PRIVATE TRANSLATION_DOMAIN="novus")
|
2023-12-09 21:51:57 -05:00
|
|
|
|
|
|
|
add_library(Novus::ExdPart ALIAS exdpart)
|