1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-23 04:27:45 +00:00
novus/launcher/CMakeLists.txt

10 lines
374 B
Text
Raw Normal View History

2023-08-31 14:21:19 +02:00
# SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
# SPDX-License-Identifier: CC0-1.0
2023-10-10 18:31:15 -04:00
add_executable(novus-launcher)
target_sources(novus-launcher PRIVATE
2023-08-31 14:18:50 +02:00
src/main.cpp
src/mainwindow.cpp)
2023-10-10 18:31:15 -04:00
target_link_libraries(novus-launcher PRIVATe Qt6::Widgets KF6::ConfigCore physis z novus-common)
2023-10-10 17:58:43 -04:00
target_include_directories(novus-launcher PUBLIC include)