1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-26 21:57:45 +00:00
novus/armoury/CMakeLists.txt

46 lines
1.2 KiB
Text
Raw Normal View History

# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
# SPDX-License-Identifier: CC0-1.0
add_executable(novus-armoury)
2023-12-10 06:51:33 -05:00
target_sources(novus-armoury
PRIVATE
include/boneeditor.h
include/cmpeditor.h
include/fullmodelviewer.h
include/gearlistmodel.h
include/gearlistwidget.h
include/gearview.h
include/mainwindow.h
include/settingswindow.h
include/singlegearview.h
src/boneeditor.cpp
src/cmpeditor.cpp
src/fullmodelviewer.cpp
src/gearlistmodel.cpp
src/gearlistwidget.cpp
src/gearview.cpp
src/main.cpp
src/mainwindow.cpp
src/settingswindow.cpp
src/singlegearview.cpp)
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-09 21:51:57 -05:00
Qt6::Concurrent)
2022-04-11 21:59:37 -04:00
install(TARGETS novus-armoury ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})