1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-28 22:47:45 +00:00
novus/karuku/CMakeLists.txt

24 lines
592 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:09 -04:00
add_executable(novus-karuku)
2023-12-10 06:51:33 -05:00
target_sources(novus-karuku
PRIVATE
include/mainwindow.h
src/main.cpp
src/mainwindow.cpp)
2023-10-10 17:55:39 -04:00
target_include_directories(novus-karuku
PUBLIC
include)
2023-12-09 21:51:57 -05:00
target_link_libraries(novus-karuku
PRIVATE
Novus::Common
Novus::ExdPart
Physis::Physis
Physis::Logger
Qt6::Core
Qt6::Widgets)
2023-10-10 17:55:39 -04:00
install(TARGETS novus-karuku ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})