2023-10-12 21:43:49 -04:00
|
|
|
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
add_library(texpart STATIC)
|
2023-12-10 06:51:33 -05:00
|
|
|
target_sources(texpart
|
|
|
|
PRIVATE
|
2023-10-12 21:43:49 -04:00
|
|
|
imagelabel.cpp
|
|
|
|
imagelabel.h
|
|
|
|
texpart.cpp
|
|
|
|
texpart.h)
|
2023-12-09 21:51:57 -05:00
|
|
|
target_link_libraries(texpart
|
|
|
|
PUBLIC
|
|
|
|
Physis::Physis
|
|
|
|
Qt6::Core
|
|
|
|
Qt6::Widgets)
|
|
|
|
target_include_directories(texpart PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
2024-02-04 15:36:08 -05:00
|
|
|
target_compile_definitions(texpart PRIVATE TRANSLATION_DOMAIN="novus")
|
2023-12-09 21:51:57 -05:00
|
|
|
|
|
|
|
add_library(Novus::TexPart ALIAS texpart)
|