1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-23 04:27:45 +00:00
novus/mdlviewer/CMakeLists.txt

14 lines
496 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:21 -04:00
add_executable(novus-mdlviewer)
target_sources(novus-mdlviewer PRIVATE
src/main.cpp
src/mainwindow.cpp)
2023-10-10 17:58:33 -04:00
target_include_directories(novus-mdlviewer
PUBLIC
include)
2023-10-10 18:31:21 -04:00
target_link_libraries(novus-mdlviewer PRIVATE physis z Qt6::Core Qt6::Widgets KF6::XmlGui mdlpart novus-common)
2023-10-10 17:58:33 -04:00
install(TARGETS novus-mdlviewer ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})