mirror of
https://github.com/redstrate/Novus.git
synced 2025-04-25 21:27:45 +00:00
14 lines
470 B
CMake
14 lines
470 B
CMake
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
add_executable(novus-karuku)
|
|
target_sources(novus-karuku PRIVATE
|
|
src/main.cpp
|
|
src/mainwindow.cpp)
|
|
target_include_directories(novus-karuku
|
|
PUBLIC
|
|
include)
|
|
|
|
target_link_libraries(novus-karuku PRIVATE physis z Qt6::Core Qt6::Widgets exdpart novus-common)
|
|
|
|
install(TARGETS novus-karuku ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})
|