mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-02 00:07:44 +00:00
19 lines
No EOL
543 B
CMake
19 lines
No EOL
543 B
CMake
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
add_library(texpart STATIC)
|
|
target_sources(texpart
|
|
PRIVATE
|
|
imagelabel.cpp
|
|
imagelabel.h
|
|
texpart.cpp
|
|
texpart.h)
|
|
target_link_libraries(texpart
|
|
PUBLIC
|
|
Physis::Physis
|
|
Qt6::Core
|
|
Qt6::Widgets)
|
|
target_include_directories(texpart PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_compile_definitions(texpart PRIVATE TRANSLATION_DOMAIN="novus")
|
|
|
|
add_library(Novus::TexPart ALIAS texpart) |