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

15 lines
470 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)
target_sources(novus-karuku PRIVATE
src/main.cpp
src/mainwindow.cpp)
2023-10-10 17:55:39 -04:00
target_include_directories(novus-karuku
PUBLIC
include)
2023-10-10 18:31:09 -04:00
target_link_libraries(novus-karuku PRIVATE physis z Qt6::Core Qt6::Widgets exdpart novus-common)
2023-10-10 17:55:39 -04:00
install(TARGETS novus-karuku ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})