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 18:31:58 -04:00
|
|
|
add_executable(novus-sagasu)
|
|
|
|
target_sources(novus-sagasu PRIVATE
|
2022-04-14 08:24:06 -04:00
|
|
|
src/main.cpp
|
2023-04-09 15:32:09 -04:00
|
|
|
src/mainwindow.cpp
|
|
|
|
src/filetreewindow.cpp
|
|
|
|
src/filepropertieswindow.cpp)
|
2023-10-10 18:31:58 -04:00
|
|
|
target_include_directories(novus-sagasu PRIVATE include)
|
|
|
|
target_link_libraries(novus-sagasu PRIVATE physis z Qt6::Core Qt6::Widgets novus-common)
|
2022-04-14 08:24:06 -04:00
|
|
|
|
2023-10-10 17:55:49 -04:00
|
|
|
install(TARGETS novus-sagasu ${KF${QT_MAJOR_VERSION}_INSTALL_TARGETS_DEFAULT_ARGS})
|