1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-03 16:37:46 +00:00
novus/parts/exd/CMakeLists.txt

15 lines
483 B
Text
Raw Normal View History

# 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)