mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-05 09:27:45 +00:00
18 lines
No EOL
472 B
CMake
18 lines
No EOL
472 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})
|
|
|
|
add_library(Novus::TexPart ALIAS texpart) |