2023-08-06 08:48:11 -04:00
|
|
|
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
2023-10-10 16:52:46 -04:00
|
|
|
add_executable(novus-armoury)
|
2023-12-10 06:51:33 -05:00
|
|
|
target_sources(novus-armoury
|
|
|
|
PRIVATE
|
2023-10-10 16:52:46 -04:00
|
|
|
include/boneeditor.h
|
|
|
|
include/cmpeditor.h
|
|
|
|
include/fullmodelviewer.h
|
|
|
|
include/gearlistmodel.h
|
|
|
|
include/gearlistwidget.h
|
|
|
|
include/gearview.h
|
|
|
|
include/mainwindow.h
|
2024-02-04 14:11:11 -05:00
|
|
|
include/materialview.h
|
|
|
|
include/metadataview.h
|
2023-12-10 11:11:01 -05:00
|
|
|
include/penumbraapi.h
|
2023-12-09 16:34:51 -05:00
|
|
|
include/settingswindow.h
|
2023-10-10 16:52:46 -04:00
|
|
|
include/singlegearview.h
|
|
|
|
|
2023-07-06 17:37:31 -04:00
|
|
|
src/boneeditor.cpp
|
2023-07-08 09:13:02 -04:00
|
|
|
src/cmpeditor.cpp
|
2023-10-10 16:52:46 -04:00
|
|
|
src/fullmodelviewer.cpp
|
|
|
|
src/gearlistmodel.cpp
|
2023-07-08 09:13:02 -04:00
|
|
|
src/gearlistwidget.cpp
|
2023-10-10 16:52:46 -04:00
|
|
|
src/gearview.cpp
|
|
|
|
src/main.cpp
|
|
|
|
src/mainwindow.cpp
|
2024-02-04 14:11:11 -05:00
|
|
|
src/materialview.cpp
|
|
|
|
src/metadataview.cpp
|
2023-12-10 11:11:01 -05:00
|
|
|
src/penumbraapi.cpp
|
2023-12-09 16:34:51 -05:00
|
|
|
src/settingswindow.cpp
|
2023-10-13 15:36:36 -04:00
|
|
|
src/singlegearview.cpp)
|
2023-10-10 16:52:46 -04:00
|
|
|
target_include_directories(novus-armoury
|
2022-04-11 21:59:37 -04:00
|
|
|
PUBLIC
|
2023-07-08 10:12:35 -04:00
|
|
|
include
|
|
|
|
PRIVATE
|
|
|
|
${CMAKE_BINARY_DIR})
|
2023-12-09 21:51:57 -05:00
|
|
|
target_link_libraries(novus-armoury
|
|
|
|
PUBLIC
|
|
|
|
Novus::Common
|
|
|
|
Novus::MdlPart
|
|
|
|
Novus::CmpPart
|
|
|
|
Novus::SklbPart
|
|
|
|
Physis::Physis
|
|
|
|
Physis::Logger
|
|
|
|
imgui
|
2023-09-26 00:37:55 -04:00
|
|
|
Qt6::Core
|
|
|
|
Qt6::Widgets
|
2023-12-10 11:11:01 -05:00
|
|
|
Qt6::Concurrent
|
|
|
|
Qt6::Network)
|
2022-04-11 21:59:37 -04:00
|
|
|
|
2023-12-31 12:11:42 -05:00
|
|
|
install(FILES zone.xiv.armoury.desktop DESTINATION ${KDE_INSTALL_APPDIR})
|
|
|
|
install(FILES zone.xiv.armoury.svg DESTINATION ${KDE_INSTALL_FULL_ICONDIR}/hicolor/scalable/apps)
|
2023-10-10 16:52:46 -04:00
|
|
|
install(TARGETS novus-armoury ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})
|
2024-04-24 22:31:40 -04:00
|
|
|
|
|
|
|
if (WIN32)
|
|
|
|
install(FILES $<TARGET_RUNTIME_DLLS:novus-armoury> DESTINATION ${CMAKE_INSTALL_BINDIR})
|
|
|
|
endif()
|