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